Changeset 64070 in vbox for trunk/src/libs/xpcom18a4/python
- Timestamp:
- Sep 28, 2016 11:02:05 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 111002
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/python/gen_python_deps.py
r63775 r64070 13 13 """ 14 14 15 from __future__ import print_function 15 16 import os,sys 16 17 from distutils.version import StrictVersion … … 88 89 if multi == 0: 89 90 prefixes = ["/usr"] 90 versions = [str(sys.version_info[0])+'.'+str(sys.version_info[1])] 91 versions = [str(sys.version_info[0])+'.'+str(sys.version_info[1]), 92 str(sys.version_info[0])+'.'+str(sys.version_info[1])+'m'] 91 93 92 94 if target == 'darwin': … … 129 131 if d is not None: 130 132 print_vars("DEF", known[d], sep, bitness_magic) 133 else: 134 print(argv[0] + ": No Python development package found!", file=sys.stderr) 131 135 132 136 if __name__ == '__main__':
Note:
See TracChangeset
for help on using the changeset viewer.