* [PATCH] fix installation of most of pygrub
@ 2005-11-09 20:20 Jeremy Katz
0 siblings, 0 replies; only message in thread
From: Jeremy Katz @ 2005-11-09 20:20 UTC (permalink / raw)
To: xen-devel@lists.xensource.com
[-- Attachment #1: Type: text/plain, Size: 98 bytes --]
Attached patch fixes a thinko in pygrub's setup.py
Signed-off-by: Jeremy Katz <katzj@redhat.com>
[-- Attachment #2: xen-pygrub-base.patch --]
[-- Type: text/x-patch, Size: 670 bytes --]
diff -r abbe3df33774 tools/pygrub/setup.py
--- a/tools/pygrub/setup.py Tue Nov 8 17:39:58 2005
+++ b/tools/pygrub/setup.py Wed Nov 9 13:32:25 2005
@@ -34,6 +34,8 @@
fsys_mods.append(reiser)
fsys_pkgs.append("grub.fsys.reiser")
+pkgs = ['grub', 'grub.fsys']
+pkgs.extend(fsys_pkgs)
setup(name='pygrub',
version='0.3',
description='Boot loader that looks a lot like grub for Xen',
@@ -42,8 +44,7 @@
license='GPL',
package_dir={'grub': 'src'},
scripts = ["src/pygrub"],
- packages=['grub',
- 'grub.fsys'].extend(fsys_pkgs),
+ packages=pkgs,
ext_modules = fsys_mods
)
[-- Attachment #3: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2005-11-09 20:20 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-11-09 20:20 [PATCH] fix installation of most of pygrub Jeremy Katz
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.