From: Edward Hervey Date: Wed, 21 Jan 2009 03:29:25 +0000 (+0100) Subject: autogen.sh : Use git submodule X-Git-Tag: RELEASE-0.10.23~256 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=044b46ec984b83e91aa2d124a5fa453deb2e6337;p=platform%2Fupstream%2Fgstreamer.git autogen.sh : Use git submodule --- diff --git a/autogen.sh b/autogen.sh index 3749bf7..6d3c129 100755 --- a/autogen.sh +++ b/autogen.sh @@ -5,16 +5,13 @@ DIE=0 package=gstreamer srcfile=gst/gst.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;