[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] Explicitly state which architectures are going to use /usr/lib64, to allow for
# HG changeset patch # User emellor@ewan # Node ID ffbee4415bf72ad092741c215484e8d83245bd51 # Parent 41c970cf82ba0043ee95f053bff2d19fe8c8b9d0 Explicitly state which architectures are going to use /usr/lib64, to allow for the fact that Itanium does not. Signed-off-by: Ewan Mellor <ewan@xxxxxxxxxxxxx> diff -r 41c970cf82ba -r ffbee4415bf7 tools/python/xen/util/auxbin.py --- a/tools/python/xen/util/auxbin.py Wed Oct 12 11:03:03 2005 +++ b/tools/python/xen/util/auxbin.py Wed Oct 12 11:04:45 2005 @@ -19,6 +19,10 @@ LIB_BIN_32 = "/usr/lib/xen/bin" LIB_BIN_64 = "/usr/lib64/xen/bin" +## The architectures on which the LIB_BIN_64 directory is used. This +# deliberately excludes ia64. +LIB_64_ARCHS = [ 'x86_64', 'ppc64', 's390x', 'sparc64'] + import os import os.path @@ -38,7 +42,7 @@ def path(): machine = os.uname()[4] - if machine.find('64') != -1 and os.path.exists(LIB_BIN_64): + if machine in LIB_64_ARCHS and os.path.exists(LIB_BIN_64): return LIB_BIN_64 else: return LIB_BIN_32 _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |