git-update: Also build $EXTRA_MODULES
authorVivia Nikolaidou <vivia@ahiru.eu>
Thu, 21 Sep 2017 11:13:47 +0000 (14:13 +0300)
committerSebastian Dröge <sebastian@centricular.com>
Fri, 22 Sep 2017 11:17:08 +0000 (14:17 +0300)
Doing a git pull but not autogen.sh / make is not consistent behaviour.

https://bugzilla.gnome.org/show_bug.cgi?id=787981

scripts/git-update.sh

index d02e0f7..25cb7cc 100755 (executable)
@@ -140,7 +140,7 @@ for m in $CORE; do
 done
 
 # build other modules in parallel
-for m in $MODULES; do
+for m in $MODULES $EXTRA_MODULES; do
   build $m &
   PIDS="$PIDS $!"
 done