BUILD: Cleaned unneeded information
[maevies] / autogen.sh
old mode 100644 (file)
new mode 100755 (executable)
index c0917f5..e056024
@@ -1,12 +1,13 @@
 #!/bin/sh
 
-set -x
-glib-gettextize --copy --force
-libtoolize --copy --automake
-intltoolize --copy --force --automake
-
-aclocal-1.8
-autoconf
-autoheader
-automake-1.8 --add-missing --copy --foreign
-./configure --enable-maintainer-mode
+set -ex
+
+rm -rf autom4te.cache
+
+autoreconf --force -i
+
+if test x$NOCONFIGURE = x; then
+    ./configure "$@"
+else
+    echo Skipping configure process.
+fi