diff options
author | John Wiegley <johnw@newartisans.com> | 2009-03-04 14:14:59 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-03-04 14:14:59 -0400 |
commit | 9a47298d811496816903515bdba7652e275cc32a (patch) | |
tree | 5e5ee6a609dd131d91b71f86a37967bd080cfda2 /tools | |
parent | 32911da9395233a979cc45ca7e5633ef963fc94a (diff) | |
download | fork-ledger-9a47298d811496816903515bdba7652e275cc32a.tar.gz fork-ledger-9a47298d811496816903515bdba7652e275cc32a.tar.bz2 fork-ledger-9a47298d811496816903515bdba7652e275cc32a.zip |
Don't run autogen from acprep unless necessary
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/build | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/tools/build b/tools/build index 6a65ea0e..05c7d75a 100755 --- a/tools/build +++ b/tools/build @@ -9,11 +9,10 @@ if [ -d ~/Products/ledger ]; then fi if [ ! -f Makefile -o \ - $SRCDIR/Makefile.am -nt Makefile -o \ + $SRCDIR/Makefile.am -nt Makefile -o \ $SRCDIR/configure.ac -nt Makefile -o \ - $SRCDIR/acprep -nt Makefile -o \ - $SRCDIR/acprep -nt Makefile -o \ - $SRCDIR/tools/myacprep -nt Makefile ]; then + $SRCDIR/acprep -nt Makefile -o \ + $SRCDIR/myacprep -nt Makefile ]; then (cd $SRCDIR && tools/myacprep) fi |