allwinner_a64/android/external/valgrind/autogen.sh
2018-08-08 16:14:42 +08:00

17 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