diff options
author | John Wiegley <johnw@newartisans.com> | 2012-09-27 17:40:17 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2012-09-27 17:40:17 -0500 |
commit | a9bd40a1e3959c35f5c72e70825594675b23446c (patch) | |
tree | b6d818a06dbbfd13b6d9d946a1ad10a0be9552bb /acprep | |
parent | 300cefd1a78ebeddb139a32fa7e1478a3f4225b4 (diff) | |
download | fork-ledger-a9bd40a1e3959c35f5c72e70825594675b23446c.tar.gz fork-ledger-a9bd40a1e3959c35f5c72e70825594675b23446c.tar.bz2 fork-ledger-a9bd40a1e3959c35f5c72e70825594675b23446c.zip |
Don't use the ninja build command by default
Diffstat (limited to 'acprep')
-rwxr-xr-x | acprep | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |