diff options
author | Edward Hervey <bilboed@bilboed.com> | 2009-01-21 04:31:32 +0100 |
---|---|---|
committer | Edward Hervey <bilboed@bilboed.com> | 2009-01-21 04:31:32 +0100 |
commit | 28418d1fec71f6ec2575d5a6be4cf7cb9e470012 (patch) | |
tree | cc11df77653c64704a7c7effb07cef1880bb7b35 /autogen.sh | |
parent | c848932e621d0aec4c2af49b7f83285ec7db9b46 (diff) |
autogen.sh : Use git submodule
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 13 |
1 files changed, 5 insertions, 8 deletions
@@ -5,16 +5,13 @@ DIE=0 package=gst-plugins-base srcfile=gst/audiotestsrc/gstaudiotestsrc.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; |