summaryrefslogtreecommitdiff
path: root/acprep
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2007-05-11 07:23:22 +0000
committerJohn Wiegley <johnw@newartisans.com>2008-04-13 03:38:44 -0400
commitf397ef9cbc021e73db66cd93cff6ebd622678a0f (patch)
tree025cd4b3cb3558c2bdc7fe2cdfdaed6c11b99323 /acprep
parenta1c225eeb6206195ddafebba9b5b4db1caf90f65 (diff)
downloadfork-ledger-f397ef9cbc021e73db66cd93cff6ebd622678a0f.tar.gz
fork-ledger-f397ef9cbc021e73db66cd93cff6ebd622678a0f.tar.bz2
fork-ledger-f397ef9cbc021e73db66cd93cff6ebd622678a0f.zip
Upgraded automake file.
Diffstat (limited to 'acprep')
-rwxr-xr-xacprep15
1 files changed, 4 insertions, 11 deletions
diff --git a/acprep b/acprep
index 7f1b334e..30172ca2 100755
--- a/acprep
+++ b/acprep
@@ -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"