2015-02-19 02:00:11 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
import sys
|
|
|
|
import os.path
|
|
|
|
import site
|
|
|
|
|
|
|
|
def main():
|
2015-02-19 18:12:44 +00:00
|
|
|
'''\
|
|
|
|
Check if the given prefix is included in sys.path for the given
|
|
|
|
python version; if not find an alternate valid prefix. Print the
|
|
|
|
result to standard out.
|
|
|
|
'''
|
|
|
|
if len(sys.argv) != 3:
|
|
|
|
msg = 'usage: %s <prefix> <python version>\n' % \
|
|
|
|
os.path.basename(sys.argv[0])
|
2015-02-19 02:00:11 +00:00
|
|
|
sys.stderr.write(msg)
|
|
|
|
return 1
|
|
|
|
python_prefix = sys.argv[1]
|
2015-02-19 18:12:44 +00:00
|
|
|
python_version = sys.argv[2]
|
|
|
|
path = '%s/lib/python%s' % (python_prefix, python_version)
|
|
|
|
path = os.path.normpath(path)
|
|
|
|
if path[-1] != '/':
|
|
|
|
path = path + '/'
|
2015-02-19 02:00:11 +00:00
|
|
|
prefix = None
|
|
|
|
for p in sys.path:
|
2015-02-19 18:12:44 +00:00
|
|
|
if p.startswith(path):
|
|
|
|
prefix = path
|
2015-02-19 02:00:11 +00:00
|
|
|
break
|
|
|
|
if not prefix:
|
|
|
|
prefix = site.PREFIXES[-1]
|
2015-02-19 18:12:44 +00:00
|
|
|
sys.stdout.write('%s\n' % prefix)
|
2015-02-19 02:00:11 +00:00
|
|
|
return 0
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
sys.exit(main())
|