Upstream version 9.38.207.0
[platform/framework/web/crosswalk.git] / src / native_client / scons.py
1 #!/usr/bin/python
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
4 # found in the LICENSE file.
5
6 import os.path
7 import sys
8
9 # This is a replacement for the "scons" script in SCons.  The script that comes
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
12 # version of SCons installed elsewhere.
13 # http://code.google.com/p/nativeclient/issues/detail?id=1928
14
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')
17 sys.path.insert(0, scons_dir)
18
19 if __name__ == "__main__":
20   import SCons.Script
21   SCons.Script.main()