mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-11-23 06:59:55 -05:00
gitcompile: return error return code and add GITCOMPILE_NO_MAKE condition
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
parent
f2bddc6656
commit
880926b3cd
18 changed files with 141 additions and 105 deletions
|
|
@ -1,9 +1,11 @@
|
|||
#!/bin/sh
|
||||
|
||||
aclocal $ACLOCAL_FLAGS
|
||||
autoheader
|
||||
automake --add-missing --copy --foreign
|
||||
touch depcomp
|
||||
autoconf
|
||||
./configure $*
|
||||
make
|
||||
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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue