From 9611c8a6f418a12a93c718a0abd118e69d1d3d30 Mon Sep 17 00:00:00 2001 From: Richard Larocque Date: Wed, 17 Aug 2011 11:32:39 -0700 Subject: Update configure.py for ninja module rename --- configure.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.py b/configure.py index 24d7374..85e8ed6 100755 --- a/configure.py +++ b/configure.py @@ -24,7 +24,7 @@ import os import sys sys.path.insert(0, 'misc') -import ninja +import ninja_syntax parser = OptionParser() platforms = ['linux', 'freebsd', 'mingw', 'windows'] @@ -51,7 +51,7 @@ if platform is None: BUILD_FILENAME = 'build.ninja' buildfile = open(BUILD_FILENAME, 'w') -n = ninja.Writer(buildfile) +n = ninja_syntax.Writer(buildfile) n.comment('This file is used to build ninja itself.') n.comment('It is generated by ' + os.path.basename(__file__) + '.') n.newline() -- cgit v0.12