pygrub: Add 64bit library path to pygrub default search path.
authorKeir Fraser <keir.fraser@citrix.com>
Wed, 30 Jul 2008 08:23:47 +0000 (09:23 +0100)
committerKeir Fraser <keir.fraser@citrix.com>
Wed, 30 Jul 2008 08:23:47 +0000 (09:23 +0100)
Signed-off-by: Stefan Berger <stefanb@us.ibm.com>
tools/pygrub/src/pygrub

index 46ed7136644c2665c3ae95c62f4ec373cccbc3bf..48855adc45f38a6e378a69bb5bbf41c78a780772 100644 (file)
@@ -21,7 +21,7 @@ import platform
 import curses, _curses, curses.wrapper, curses.textpad, curses.ascii
 import getopt
 
-sys.path = [ '/usr/lib/python' ] + sys.path
+sys.path = [ '/usr/lib/python', '/usr/lib64/python' ] + sys.path
 
 import fsimage
 import grub.GrubConf