Skip to content

Commit 523f14e

Browse files
author
bart
committed
Revert r12195 because it triggers suspicious error messages on systems where
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 a5019735-40e9-0310-863c-91ae7b9d1cf9
1 parent eb8577f commit 523f14e

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

autogen.sh

+15-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
11
#!/bin/sh
22

3-
autoreconf -ivf
3+
run ()
4+
{
5+
echo "running: $*"
6+
eval $*
7+
8+
if test $? != 0 ; then
9+
echo "error: while running '$*'"
10+
exit 1
11+
fi
12+
}
13+
14+
run aclocal
15+
run autoheader
16+
run automake -a
17+
run autoconf

0 commit comments

Comments
 (0)