Don't use the ninja build command by default

This commit is contained in:
John Wiegley 2012-09-27 17:40:17 -05:00
parent 300cefd1a7
commit a9bd40a1e3

2
acprep
View file

@ -897,7 +897,7 @@ class PrepareBuild(CommandLineApp):
self.log.debug('Changing directory to ' + build_dir)
os.chdir(build_dir)
self.execute(*(['ninja'] + make_args))
self.execute(*(['make'] + make_args))
finally:
os.chdir(self.source_dir)