- Minor change to ${top} stuff to fix a possible
[monky] / autogen.sh
index 6c319ea..3067c03 100755 (executable)
@@ -1,8 +1,14 @@
 #!/bin/sh
 # $Id$
 
-aclocal-1.9
-libtoolize --force
-autoheader
-automake-1.9 -a
-autoconf
+AUTOCONF=${AUTOCONF:-autoconf}
+AUTOMAKE=${AUTOMAKE:-automake}
+ACLOCAL=${ACLOCAL:-aclocal}
+AUTOHEADER=${AUTOHEADER:-autoheader}
+LIBTOOLIZE=${LIBTOOLIZE:-libtoolize}
+
+$ACLOCAL
+$LIBTOOLIZE --force
+$AUTOHEADER
+$AUTOMAKE -a
+$AUTOCONF