ftmemsim-valgrind/autogen.sh
Bart Van Assche 3371d75b83 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
2011-10-22 14:38:47 +00:00

18 lines
191 B
Bash
Executable File

#!/bin/sh
run ()
{
echo "running: $*"
eval $*
if test $? != 0 ; then
echo "error: while running '$*'"
exit 1
fi
}
run aclocal
run autoheader
run automake -a
run autoconf