mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-16 13:26:36 +00:00
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:
parent
def24f00ef
commit
05ff22f68c
2 changed files with 20 additions and 2 deletions
|
@ -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>
|
2008-06-20 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
* configure.ac:
|
* configure.ac:
|
||||||
|
|
|
@ -23,14 +23,26 @@ for m in \
|
||||||
cd ..
|
cd ..
|
||||||
continue
|
continue
|
||||||
fi
|
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
|
if test $? -ne 0
|
||||||
then
|
then
|
||||||
FAILURE="$FAILURE$m: make\n"
|
FAILURE="$FAILURE$m: make\n"
|
||||||
cd ..
|
cd ..
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
make check
|
|
||||||
|
make $@ check
|
||||||
if test $? -ne 0
|
if test $? -ne 0
|
||||||
then
|
then
|
||||||
FAILURE="$FAILURE$m: check\n"
|
FAILURE="$FAILURE$m: check\n"
|
||||||
|
|
Loading…
Reference in a new issue