scripts: add some more modules to git-update.sh
authorTim-Philipp Müller <tim@centricular.net>
Tue, 2 Apr 2013 22:18:42 +0000 (23:18 +0100)
committerTim-Philipp Müller <tim@centricular.net>
Tue, 2 Apr 2013 22:18:42 +0000 (23:18 +0100)
https://bugzilla.gnome.org/show_bug.cgi?id=697058

scripts/git-update.sh

index 0c53f96..221e1ae 100755 (executable)
@@ -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