diff options
author | John Wiegley <johnw@newartisans.com> | 2006-02-15 21:40:37 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-04-13 02:41:22 -0400 |
commit | 963f05e8d0d00c9773f581e814bbcccaf3567eb8 (patch) | |
tree | c97cadc808d8f84da6446ed049d3aa3ecde4b3d8 | |
parent | 722b9c78bfbfb475302177687da23317ddf9493c (diff) | |
download | fork-ledger-963f05e8d0d00c9773f581e814bbcccaf3567eb8.tar.gz fork-ledger-963f05e8d0d00c9773f581e814bbcccaf3567eb8.tar.bz2 fork-ledger-963f05e8d0d00c9773f581e814bbcccaf3567eb8.zip |
Use libtoolize if glibtoolize can't be found.
-rwxr-xr-x | acprep | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -2,7 +2,11 @@ touch AUTHORS COPYING -glibtoolize --automake -f -c +if which glibtoolize > /dev/null 2>&1; then + glibtoolize --automake -f -c +else + libtoolize --automake -f -c +fi aclocal autoheader if [ "$1" = "--dist" ]; then |