- added include
[supertux.git] / autogen.sh
index cc68549..37b759f 100755 (executable)
@@ -1,7 +1,12 @@
 #!/bin/sh
 
-aclocal-1.7
-automake-1.7 --force --copy --add-missing
+# we need a minimum of automake 1.6 and automake 1.8 seems to be buggy
+# this doesn't seem to work well
+# see AUTOMAKE_OPTIONS in Makefile.am
+export WANT_AUTOMAKE=1.6
+
+aclocal -I m4
+automake --copy --add-missing
 autoconf
 
 # EOF #