diff options
author | John Wiegley <johnw@newartisans.com> | 2012-09-26 12:25:26 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2012-09-26 12:25:26 -0500 |
commit | 300cefd1a78ebeddb139a32fa7e1478a3f4225b4 (patch) | |
tree | 5060cdb9bb4ddab65c35b9e8b3dd10adc672daa9 /tools | |
parent | 7c288b956d02f7a5157970876697b76fe66aaeae (diff) | |
download | fork-ledger-300cefd1a78ebeddb139a32fa7e1478a3f4225b4.tar.gz fork-ledger-300cefd1a78ebeddb139a32fa7e1478a3f4225b4.tar.bz2 fork-ledger-300cefd1a78ebeddb139a32fa7e1478a3f4225b4.zip |
Changes to support using homebrew and ninja
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/build.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/build.sh b/tools/build.sh index a37b06f4..2abf70b8 100755 --- a/tools/build.sh +++ b/tools/build.sh @@ -6,10 +6,10 @@ shift 1 JOBS=-j$(sysctl -n hw.activecpu) OPTIONS="$flavor --debug --python --doxygen $JOBS" -time ( \ - cd ~/src/ledger ; \ - PATH=/usr/local/bin:/opt/local/bin:$PATH \ - nice -n 20 ./acprep $OPTIONS make "$@" && \ - PATH=/usr/local/bin:/opt/local/bin:$PATH \ - nice -n 20 ./acprep $OPTIONS check "$@" \ +time ( \ + cd ~/src/ledger ; \ + PATH=/usr/local/bin:/opt/local/bin:$PATH \ + nice -n 20 ./acprep $OPTIONS make $JOBS "$@" && \ + PATH=/usr/local/bin:/opt/local/bin:$PATH \ + nice -n 20 ./acprep $OPTIONS check $JOBS "$@" \ ) |