diff options
author | John Wiegley <johnw@newartisans.com> | 2009-01-25 16:48:11 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-01-25 16:48:11 -0400 |
commit | 878e5db80679ea82f8248bc2f4961dd31a46d4b2 (patch) | |
tree | 3196b3c79e31540183783ac18c677ad2ba63e8d1 | |
parent | 3f07906e2f3444b09b77b0a62c3a82d14090b2b7 (diff) | |
download | ledger-878e5db80679ea82f8248bc2f4961dd31a46d4b2.tar.gz ledger-878e5db80679ea82f8248bc2f4961dd31a46d4b2.tar.bz2 ledger-878e5db80679ea82f8248bc2f4961dd31a46d4b2.zip |
Changed --dir option for acprep to --output, which makes more sense.
-rwxr-xr-x | acprep | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -70,7 +70,7 @@ BUILD_DIR=false # but gives you useful stack traces to mention in your bug reports. # Recommended if you're not running a release version. # -# --dir PATH +# --build PATH # # Building the sources in PATH instead of in the source directory. This # breaks pre-compiled headers, but keeps your source tree clean. @@ -242,7 +242,7 @@ while [ -n "$1" ]; do CXXFLAGS="$CXXFLAGS -fomit-frame-pointer -O3" shift 1 ;; - --dir) + --output) shift 1 BUILD_DIR="$1" shift 1 ;; |