Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(488)

Side by Side Diff: scons.py

Issue 12450015: **/*.py: use /usr/bin/env to find python Base URL: https://chromium.googlesource.com/native_client/src/native_client@master
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « run.py ('k') | site_scons/gyp_extract.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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()
OLDNEW
« no previous file with comments | « run.py ('k') | site_scons/gyp_extract.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698