alsa-tools/ac3dec/gitcompile
Jaroslav Kysela 880926b3cd gitcompile: return error return code and add GITCOMPILE_NO_MAKE condition
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
2008-08-19 18:51:25 +02:00

11 lines
241 B
Bash
Executable file

#!/bin/sh
aclocal $ACLOCAL_FLAGS || exit 1
autoheader || exit 1
automake --add-missing --copy --foreign || exit 1
touch depcomp || exit 1
autoconf || exit 1
./configure $* || exit 1
if [ -z "$GITCOMPILE_NO_MAKE" ]; then
make || exit 1
fi