diff options
author | Evan Martin <martine@danga.com> | 2012-10-21 19:20:33 (GMT) |
---|---|---|
committer | Evan Martin <martine@danga.com> | 2012-10-21 19:20:33 (GMT) |
commit | 56f1ffcc55925d6b499bba9eb90ec2eca4bfcd25 (patch) | |
tree | c302b14bc96e7c25142e91c08555feb5f6a2a181 /bootstrap.py | |
parent | b022e789fd9b087e0acbeca502d586d49dd3e2f2 (diff) | |
parent | f4b1133d5c36b531a39606da4e1cadc38a784a2e (diff) | |
download | Ninja-56f1ffcc55925d6b499bba9eb90ec2eca4bfcd25.zip Ninja-56f1ffcc55925d6b499bba9eb90ec2eca4bfcd25.tar.gz Ninja-56f1ffcc55925d6b499bba9eb90ec2eca4bfcd25.tar.bz2 |
Merge pull request #450 from zchothia/zc/py3k
Add support for Python 3
Diffstat (limited to 'bootstrap.py')
-rwxr-xr-x | bootstrap.py | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/bootstrap.py b/bootstrap.py index 3032a9b..7dfc543 100755 --- a/bootstrap.py +++ b/bootstrap.py @@ -13,6 +13,8 @@ # See the License for the specific language governing permissions and # limitations under the License. +from __future__ import print_function + from optparse import OptionParser import sys import os @@ -44,11 +46,12 @@ if sys.platform.startswith('freebsd'): cflags.append('-I/usr/local/include') ldflags.append('-L/usr/local/lib') -print 'Building ninja manually...' +print('Building ninja manually...') try: os.mkdir('build') -except OSError, e: +except OSError: + e = sys.exc_info()[1] if e.errno != errno.EEXIST: raise @@ -103,7 +106,7 @@ else: args.extend(['-o', binary]) if options.verbose: - print ' '.join(args) + print(' '.join(args)) run(args) @@ -112,7 +115,7 @@ if options.verbose: verbose = ['-v'] if sys.platform.startswith('win32'): - print 'Building ninja using itself...' + print('Building ninja using itself...') run([sys.executable, 'configure.py', '--with-ninja=%s' % binary] + conf_args) run(['./' + binary] + verbose) @@ -124,17 +127,17 @@ if sys.platform.startswith('win32'): for obj in glob.glob('*.obj'): os.unlink(obj) - print """ + print(""" Done! Note: to work around Windows file locking, where you can't rebuild an in-use binary, to run ninja after making any changes to build ninja itself you should run ninja.bootstrap instead. Your build is also configured to use ninja.bootstrap.exe as the MSVC helper; see the --with-ninja flag of -the --help output of configure.py.""" +the --help output of configure.py.""") else: - print 'Building ninja using itself...' + print('Building ninja using itself...') run([sys.executable, 'configure.py'] + conf_args) run(['./' + binary] + verbose) os.unlink(binary) - print 'Done!' + print('Done!') |