]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Revert r12195 because it triggers suspicious error messages on systems where
authorBart Van Assche <bvanassche@acm.org>
Sat, 22 Oct 2011 14:38:47 +0000 (14:38 +0000)
committerBart Van Assche <bvanassche@acm.org>
Sat, 22 Oct 2011 14:38:47 +0000 (14:38 +0000)
libtool has not been installed:

Can't exec "libtoolize": No such file or directory at /usr/bin/autoreconf line 196.
Use of uninitialized value in pattern match (m//) at /usr/bin/autoreconf line 196.

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@12198

autogen.sh

index a0703d739f16ab52f1181394b045844edcb721b9..117462c7ffdc340972417c6793a9c1a17d65edee 100755 (executable)
@@ -1,3 +1,17 @@
 #!/bin/sh
 
-autoreconf -ivf
+run ()
+{
+    echo "running: $*"
+    eval $*
+
+    if test $? != 0 ; then
+       echo "error: while running '$*'"
+       exit 1
+    fi
+}
+
+run aclocal
+run autoheader
+run automake -a
+run autoconf