gst-uninstalled: add gst-libav to pkg-config path
[platform/upstream/gstreamer.git] / scripts / git-version.sh
1 #!/bin/bash
2
3 # update all known gstreamer modules
4 # build them one by one
5 # report failures at the end
6 # run this from a directory that contains the checkouts for each of the
7 # modules
8
9 FAILURE=
10
11 for m in \
12   gstreamer gst-plugins-base \
13   gst-plugins-good gst-plugins-ugly gst-plugins-bad \
14   gst-ffmpeg \
15   gst-python \
16   gnonlin \
17   ; do
18   if test -d $m; then
19     cd $m
20       echo $m
21       git branch | grep '*'
22       git log | head -n 1
23     cd ..
24   fi
25 done