diff options
author | John Wiegley <johnw@newartisans.com> | 2007-05-11 07:23:22 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-04-13 03:38:44 -0400 |
commit | f397ef9cbc021e73db66cd93cff6ebd622678a0f (patch) | |
tree | 025cd4b3cb3558c2bdc7fe2cdfdaed6c11b99323 /acprep | |
parent | a1c225eeb6206195ddafebba9b5b4db1caf90f65 (diff) | |
download | fork-ledger-f397ef9cbc021e73db66cd93cff6ebd622678a0f.tar.gz fork-ledger-f397ef9cbc021e73db66cd93cff6ebd622678a0f.tar.bz2 fork-ledger-f397ef9cbc021e73db66cd93cff6ebd622678a0f.zip |
Upgraded automake file.
Diffstat (limited to 'acprep')
-rwxr-xr-x | acprep | 15 |
1 files changed, 4 insertions, 11 deletions
@@ -11,18 +11,11 @@ PYTHON_HOME="/Library/Frameworks/Python.framework/Versions/2.5" # linker flags for all the various build permutations I use for # testing and profiling. -LIBTOOLIZE=$(which glibtoolize 2>&1) - -if [ -x "$LIBTOOLIZE" ]; then - "$LIBTOOLIZE" --automake -f -c -else - libtoolize --automake -f -c +cmd=$(which glibtoolize 2>&1) +if [ -x "$cmd" ]; then + export LIBTOOLIZE="$cmd" fi - -aclocal -autoheader -automake -a -c -f -autoconf +autoreconf --install INCDIRS="-I/usr/local/include" |