mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-03 18:13:01 +00:00
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
18 lines
191 B
Bash
Executable File
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
|