diff options
author | Steven Knight <knight@baldmt.com> | 2002-01-30 13:30:33 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2002-01-30 13:30:33 (GMT) |
commit | 1e3bfc03bd3a7c60c478cad0021ef8345803ecee (patch) | |
tree | 1c91861ef7882a5ec83fdf72eb44938c9bbd952b /src/script | |
parent | fc1f577e9fc77c19844b694ab4952ddbb3747bcd (diff) | |
download | SCons-1e3bfc03bd3a7c60c478cad0021ef8345803ecee.zip SCons-1e3bfc03bd3a7c60c478cad0021ef8345803ecee.tar.gz SCons-1e3bfc03bd3a7c60c478cad0021ef8345803ecee.tar.bz2 |
Support installation in arbitrary --prefix values.
Diffstat (limited to 'src/script')
-rw-r--r-- | src/script/scons.py | 25 |
1 files changed, 21 insertions, 4 deletions
diff --git a/src/script/scons.py b/src/script/scons.py index c339d00..3490873 100644 --- a/src/script/scons.py +++ b/src/script/scons.py @@ -46,15 +46,32 @@ if sys.platform == 'win32': libs.extend([ os.path.join(sys.prefix, 'SCons-__VERSION__'), os.path.join(sys.prefix, 'SCons') ]) else: + prefs = [] + + _bin = os.path.join('', 'bin') _usr = os.path.join('', 'usr') _usr_local = os.path.join('', 'usr', 'local') + + script_dir = sys.path[0] + + if script_dir == 'bin': + prefs.append(os.getcwd()) + else: + if script_dir == '.' or script_dir == '': + script_dir = os.getcwd() + if script_dir[-len(_bin):] == _bin: + prefs.append(script_dir[:-len(_bin)]) + if sys.prefix[-len(_usr):] == _usr: - prefs = [sys.prefix, os.path.join(sys.prefix, "local")] - elif sys.prefix[-len(_usr_local)] == _usr_local: + prefs.append(sys.prefix) + prefs.append(os.path.join(sys.prefix, "local")) + elif sys.prefix[-len(_usr_local):] == _usr_local: _local = os.path.join('', 'local') - prefs = [sys.prefix[:-len(_local)], sys.prefix] + prefs.append(sys.prefix[:-len(_local)]) + prefs.append(sys.prefix) else: - prefs = [sys.prefix] + prefs.append(sys.prefix) + libs.extend(map(lambda x: os.path.join(x, 'lib', 'scons-__VERSION__'), prefs)) libs.extend(map(lambda x: os.path.join(x, 'lib', 'scons'), prefs)) |