Add /usr/local/scons* to sys.path.
[scons.git] / src / script / scons.py
1 #! /usr/bin/env python
2 #
3 # SCons - a Software Constructor
4 #
5 # Copyright (c) 2001 Steven Knight
6 #
7 # Permission is hereby granted, free of charge, to any person obtaining
8 # a copy of this software and associated documentation files (the
9 # "Software"), to deal in the Software without restriction, including
10 # without limitation the rights to use, copy, modify, merge, publish,
11 # distribute, sublicense, and/or sell copies of the Software, and to
12 # permit persons to whom the Software is furnished to do so, subject to
13 # the following conditions:
14 #
15 # The above copyright notice and this permission notice shall be included
16 # in all copies or substantial portions of the Software.
17 #
18 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
19 # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
20 # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
22 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 #
26
27 __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
28
29 import sys
30 import os.path
31 import os
32
33 # Strip the script directory from sys.path() so on case-insensitive
34 # (WIN32) systems Python doesn't think that the "scons" script is the
35 # "SCons" package.  Replace it with our own library directories
36 # (version-specific first, in case they installed by hand there,
37 # followed by generic) so we pick up the right version of the build
38 # engine modules if they're in either directory.
39
40 libs = []
41
42 if os.environ.has_key("SCONS_LIB_DIR"):
43     libs.append(os.environ["SCONS_LIB_DIR"])
44
45 if sys.platform == 'win32':
46     libs.extend([ os.path.join(sys.prefix, 'SCons-__VERSION__'),
47                   os.path.join(sys.prefix, 'SCons') ])
48 else:
49     _usr = os.path.join('', 'usr')
50     _usr_local = os.path.join('', 'usr', 'local')
51     if sys.prefix[-len(_usr):] == _usr:
52         prefs = [sys.prefix, os.path.join(sys.prefix, "local")]
53     elif sys.prefix[-len(_usr_local)] == _usr_local:
54         _local = os.path.join('', 'local')
55         prefs = [sys.prefix[:-len(_local)], sys.prefix]
56     else:
57         prefs = [sys.prefix]
58     libs.extend(map(lambda x: os.path.join(x, 'lib', 'scons-__VERSION__'), prefs))
59     libs.extend(map(lambda x: os.path.join(x, 'lib', 'scons'), prefs))
60
61 sys.path = libs + sys.path[1:]
62
63 import SCons.Script
64 SCons.Script.main()