- Timestamp:
- May 23, 2013 11:16:55 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/python/gen_python_deps.py
r45204 r46230 2 2 3 3 """ 4 Copyright (C) 2009-201 2Oracle Corporation4 Copyright (C) 2009-2013 Oracle Corporation 5 5 6 6 This file is part of VirtualBox Open Source Edition (OSE), as … … 31 31 lib64 = os.path.join(p, "lib", "64", dllpre+"python"+v+dllsuff) 32 32 elif bitness_magic == 2: 33 34 33 lib64 = os.path.join(p, "lib/x86_64-linux-gnu", dllpre+"python"+v+dllsuff) 34 if not os.path.isfile(lib64): 35 35 lib64 = os.path.join(p, "lib64", dllpre+"python"+v+dllsuff) 36 36 if not os.path.isfile(lib64): … … 38 38 else: 39 39 lib64 = None 40 return [os.path.join(p, "include", "python"+v), 41 lib, 42 lib64] 40 return [os.path.join(p, "include", "python"+v), lib, lib64] 43 41 44 42 def print_vars(vers, known, sep, bitness_magic): 45 43 print "VBOX_PYTHON%s_INC=%s%s" %(vers, known[0], sep) 46 44 if bitness_magic > 0: 47 print "VBOX_PYTHON%s_LIB=%s%s" %(vers, known[2], sep)45 print "VBOX_PYTHON%s_LIB=%s%s" %(vers, known[2], sep) 48 46 else: 49 print "VBOX_PYTHON%s_LIB=%s%s" %(vers, known[1], sep)47 print "VBOX_PYTHON%s_LIB=%s%s" %(vers, known[1], sep) 50 48 51 49
Note:
See TracChangeset
for help on using the changeset viewer.