Using autoreconf in autogen in ethumb is bad. With it, libtool m4 stuff is included...
authorquaker <quaker@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Wed, 20 Jan 2010 19:13:22 +0000 (19:13 +0000)
committerquaker <quaker@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Wed, 20 Jan 2010 19:13:22 +0000 (19:13 +0000)
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ethumb@45360 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

autogen.sh

index 8610825..5bbd4d9 100755 (executable)
@@ -1,6 +1,13 @@
 #!/bin/sh
 
-autoreconf -f -i
+rm -rf autom4te.cache
+rm -f aclocal.m4 ltmain.sh
+
+echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS -I m4 || exit 1
+echo "Running autoheader..." ; autoheader || exit 1
+echo "Running autoconf..." ; autoconf || exit 1
+echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize --automake) || exit 1
+echo "Running automake..." ; automake --add-missing --copy --gnu || exit 1
 
 if [ -z "$NOCONFIGURE" ]; then
        ./configure "$@"