mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-03 18:13:01 +00:00
This prevents large-scale changes (e.g. auto-formatting) from negatively affecting `git blame`.
22 lines
320 B
Bash
Executable File
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
|