Displaying 2 results from an estimated 2 matches for "lib_64_archs".
2006 Aug 01
0
[PATCH][TOOLS] ppc64 is not a LIB_64_ARCH
...in.py
--- a/tools/python/xen/util/auxbin.py Thu Jul 27 20:07:02 2006 -0400
+++ b/tools/python/xen/util/auxbin.py Tue Aug 01 16:40:33 2006 -0400
@@ -22,7 +22,7 @@ LIB_BIN_SUFFIX = "xen/bin"
## The architectures on which the LIB_64 directory is used. This
# deliberately excludes ia64.
-LIB_64_ARCHS = [ ''x86_64'', ''ppc64'', ''s390x'', ''sparc64'']
+LIB_64_ARCHS = [ ''x86_64'', ''s390x'', ''sparc64'']
import os
_______________________________________________
Xen-devel mailin...
2007 Jun 19
0
[PATCH] adjust tools'' path calculation
...2007-06-18/tools/python/xen/util/auxbin.py
===================================================================
--- 2007-06-18.orig/tools/python/xen/util/auxbin.py 2007-06-19 11:25:18.000000000 +0200
+++ 2007-06-18/tools/python/xen/util/auxbin.py 2007-06-18 12:15:35.000000000 +0200
@@ -27,6 +27,7 @@ LIB_64_ARCHS = [ ''x86_64'', ''s390x'', ''spa
import os
import os.path
+import sys
def execute(exe, args = None):
@@ -47,6 +48,14 @@ def path():
def libpath():
machine = os.uname()[4]
+ if sys.argv[0] != ''-c'':
+ prefix = os.pat...