From: Bastian Blank Date: Sat, 5 Jul 2014 09:47:01 +0000 (+0200) Subject: pygrub: Set sys.path X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=5f6af68e47723e1eaebc2080ab43f8904e880d1e;p=people%2Fiwj%2Fxen.git pygrub: Set sys.path We install libfsimage in a non-standard path for Reasons. (See debian/rules.) This patch was originally part of `tools-pygrub-prefix.diff' (eg commit 51657319be54) and included changes to the Makefile to change the installation arrangements (we do that part in the rules now since that is a lot less prone to conflicts when we update) and to shared library rpath (which is now done in a separate patch). (Commit message rewritten by Ian Jackson.) Signed-off-by: Ian Jackson squash! pygrub: Set sys.path and rpath --- diff --git a/tools/pygrub/src/pygrub b/tools/pygrub/src/pygrub index 097787974b..f8d510370a 100755 --- a/tools/pygrub/src/pygrub +++ b/tools/pygrub/src/pygrub @@ -20,6 +20,8 @@ import platform import curses, _curses, curses.wrapper, curses.textpad, curses.ascii import getopt +sys.path.insert(1, sys.path[0] + '/../lib/python') + import fsimage import grub.GrubConf import grub.LiloConf