ftmemsim-valgrind/autogen.sh
Nicholas Nethercote ca5486d60c Add a .git-blame-ignore-revs file.
This prevents large-scale changes (e.g. auto-formatting) from negatively
affecting `git blame`.
2023-04-26 16:54:15 +10:00

22 lines
320 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
# Valgrind-specific Git configuration.
echo "running: git configuration"
git config blame.ignoreRevsFile .git-blame-ignore-revs