OLD | NEW |
1 #!/usr/bin/python | 1 #!/usr/bin/env python |
2 # Copyright (c) 2011 The Native Client Authors. All rights reserved. | 2 # Copyright (c) 2011 The Native Client Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 import os.path | 6 import os.path |
7 import sys | 7 import sys |
8 | 8 |
9 # This is a replacement for the "scons" script is SCons. The script that comes | 9 # This is a replacement for the "scons" script is SCons. The script that comes |
10 # with the distribution searches for SCons in standard directories, but we want | 10 # with the distribution searches for SCons in standard directories, but we want |
11 # the one in the third-party directory. Searching can screw us up if there's a | 11 # the one in the third-party directory. Searching can screw us up if there's a |
12 # version of SCons installed elsewhere. | 12 # version of SCons installed elsewhere. |
13 # http://code.google.com/p/nativeclient/issues/detail?id=1928 | 13 # http://code.google.com/p/nativeclient/issues/detail?id=1928 |
14 | 14 |
15 root = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) | 15 root = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) |
16 scons_dir = os.path.join(root, 'third_party', 'scons-2.0.1', 'engine') | 16 scons_dir = os.path.join(root, 'third_party', 'scons-2.0.1', 'engine') |
17 sys.path.insert(0, scons_dir) | 17 sys.path.insert(0, scons_dir) |
18 | 18 |
19 if __name__ == "__main__": | 19 if __name__ == "__main__": |
20 import SCons.Script | 20 import SCons.Script |
21 SCons.Script.main() | 21 SCons.Script.main() |
OLD | NEW |