mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-06 01:19:38 +00:00
05ff22f68c
Original commit message from CVS: * scripts/cvs-update.sh: Pass arguments to make. Run autoregen.sh if Makefile is not there.
60 lines
997 B
Bash
Executable file
60 lines
997 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# update all known gstreamer modules
|
|
# build them one by one
|
|
# report failures at the end
|
|
# run this from a directory that contains the checkouts for each of the
|
|
# modules
|
|
|
|
FAILURE=
|
|
|
|
for m in \
|
|
gstreamer gst-plugins-base \
|
|
gst-plugins-good gst-plugins-ugly gst-plugins-bad \
|
|
gst-ffmpeg \
|
|
gst-python \
|
|
; do
|
|
if test -d $m; then
|
|
cd $m
|
|
cvs update -dP
|
|
if test $? -ne 0
|
|
then
|
|
FAILURE="$FAILURE$m: update\n"
|
|
cd ..
|
|
continue
|
|
fi
|
|
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
|
|
if test $? -ne 0
|
|
then
|
|
FAILURE="$FAILURE$m: check\n"
|
|
cd ..
|
|
continue
|
|
fi
|
|
cd ..
|
|
fi
|
|
done
|
|
|
|
if test "x$FAILURE" != "x"; then
|
|
echo "Failures:"
|
|
echo
|
|
echo -e $FAILURE
|
|
fi
|