From c1291e3b98ab0997d983f80f7e5e35af20fabe35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Tue, 2 Apr 2013 23:18:42 +0100 Subject: [PATCH] scripts: add some more modules to git-update.sh https://bugzilla.gnome.org/show_bug.cgi?id=697058 --- scripts/git-update.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/scripts/git-update.sh b/scripts/git-update.sh index 0c53f967bf..221e1aeb49 100755 --- a/scripts/git-update.sh +++ b/scripts/git-update.sh @@ -12,7 +12,10 @@ CORE="\ gstreamer gst-plugins-base" MODULES="\ gst-plugins-good gst-plugins-ugly gst-plugins-bad \ - gst-ffmpeg \ + gst-libav" +EXTRA_MODULES="\ + gst-editing-services \ + gst-rtsp-server \ gst-python \ gnonlin" @@ -28,7 +31,7 @@ ERROR_LOG="$tmp/failures.log" touch $ERROR_LOG ERROR_RETURN=255 -for m in $CORE $MODULES; do +for m in $CORE $MODULES $EXTRA_MODULES; do if test -d $m; then echo "+ updating $m" cd $m