summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorEdward Hervey <bilboed@bilboed.com>2009-01-21 04:34:37 +0100
committerEdward Hervey <bilboed@bilboed.com>2009-01-21 04:34:37 +0100
commit4627076310b8e4978724cee66bd28ae07315d4fd (patch)
tree7e944ef3c512f36da3bee9f6524cb39822a99c28 /autogen.sh
parent2742ccf9313f138ca19584782e313949f0e92963 (diff)
autogen.sh : Use git submodule
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/autogen.sh b/autogen.sh
index 1cdab55..4b98c6f 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -8,13 +8,13 @@ have_svn=`which svn`
# FFMPEG specific properties
. ./ffmpegrev
-# a quick cvs co if necessary to alleviate the pain - may remove this
-# when developers get a clue ;)
-if test ! -d common;
+# make sure we have common
+if test ! -f common/gst-autogen.sh;
then
- echo "+ getting common/ from cvs"
- cvs co common
+ echo "+ Setting up common submodule"
+ git submodule init
fi
+git submodule update
if test -x $have_svn && [ $have_svn ];
then