summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorEdward Hervey <bilboed@bilboed.com>2009-01-21 04:32:16 +0100
committerEdward Hervey <bilboed@bilboed.com>2009-01-21 04:32:16 +0100
commit8734fde9be6831375d1aa99c6b0cbe50ef8a7556 (patch)
treec3002c5c5fdaf4d005d40932601048241a2d7123 /autogen.sh
parente0237fb6e8e3583e108d81a357bd5716b6d23dce (diff)
downloadgstreamer-plugins-bad-8734fde9be6831375d1aa99c6b0cbe50ef8a7556.tar.gz
autogen.sh : Use git submodule
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh13
1 files changed, 5 insertions, 8 deletions
diff --git a/autogen.sh b/autogen.sh
index 41ca8dab1..589e85668 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -5,16 +5,13 @@ DIE=0
package=gst-plugins-bad
srcfile=gst/speed/gstspeed.c
-# a quick cvs co to ease the transition
-if test ! -d common;
+# Make sure we have common
+if test ! -f common/gst-autogen.sh;
then
- echo "+ getting common/ from cvs"
- if test -e CVS/Tag
- then
- TAG="-r `tail -c +2 CVS/Tag`"
- fi
- cvs co $TAG common
+ echo "+ Setting up common submodule"
+ git submodule init
fi
+git submodule update
# source helper functions
if test ! -f common/gst-autogen.sh;