[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] Add /usr/lib64/python to the path for python tools so that they can be
ChangeSet 1.1378, 2005/04/25 08:55:26+01:00, kaf24@xxxxxxxxxxxxxxxxxxxx Add /usr/lib64/python to the path for python tools so that they can be found on 64-bit platforms. Signed-off-by: Jerone Young <jyoung@xxxxxxxxxx> netfix | 1 + xend | 1 + xensv | 1 + xm | 1 + 4 files changed, 4 insertions(+) diff -Nru a/tools/misc/netfix b/tools/misc/netfix --- a/tools/misc/netfix 2005-04-25 04:04:09 -04:00 +++ b/tools/misc/netfix 2005-04-25 04:04:09 -04:00 @@ -11,6 +11,7 @@ # add fallback path for non-native python path installs if needed sys.path.append('/usr/lib/python') +sys.path.append('/usr/lib64/python') from xen.util.Brctl import * short_options = 'hvqni:b:c' diff -Nru a/tools/misc/xend b/tools/misc/xend --- a/tools/misc/xend 2005-04-25 04:04:09 -04:00 +++ b/tools/misc/xend 2005-04-25 04:04:09 -04:00 @@ -32,6 +32,7 @@ # add fallback path for non-native python path installs if needed sys.path.append('/usr/lib/python') +sys.path.append('/usr/lib64/python') from xen.xend.server import SrvDaemon class CheckError(ValueError): diff -Nru a/tools/misc/xensv b/tools/misc/xensv --- a/tools/misc/xensv 2005-04-25 04:04:09 -04:00 +++ b/tools/misc/xensv 2005-04-25 04:04:09 -04:00 @@ -24,6 +24,7 @@ # add fallback path for non-native python path installs if needed sys.path.append('/usr/lib/python') +sys.path.append('/usr/lib64/python') from xen.xend.server.params import XEND_PID_FILE class CheckError(ValueError): diff -Nru a/tools/misc/xm b/tools/misc/xm --- a/tools/misc/xm 2005-04-25 04:04:09 -04:00 +++ b/tools/misc/xm 2005-04-25 04:04:09 -04:00 @@ -4,6 +4,7 @@ # add fallback path for non-native python path installs if needed sys.path.append('/usr/lib/python') +sys.path.append('/usr/lib64/python') from xen.xm import main main.main(sys.argv) _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |