scripts/cvs-update.sh: Pass arguments to make.

Original commit message from CVS:
* scripts/cvs-update.sh:
Pass arguments to make.
Run autoregen.sh if Makefile is not there.
This commit is contained in:
Thomas Vander Stichele 2008-06-20 16:29:23 +00:00
parent def24f00ef
commit 05ff22f68c
2 changed files with 20 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2008-06-20 Thomas Vander Stichele <thomas at apestaart dot org>
* scripts/cvs-update.sh:
Pass arguments to make.
Run autoregen.sh if Makefile is not there.
2008-06-20 Thomas Vander Stichele <thomas at apestaart dot org>
* configure.ac:

View file

@ -23,14 +23,26 @@ for m in \
cd ..
continue
fi
make
if test ! -e Makefile
then
./autoregen.sh
if test $? -ne 0
then
FAILURE="$FAILURE$m: autoregen.sh\n"
cd ..
continue
fi
fi
make $@
if test $? -ne 0
then
FAILURE="$FAILURE$m: make\n"
cd ..
continue
fi
make check
make $@ check
if test $? -ne 0
then
FAILURE="$FAILURE$m: check\n"