From 0feb0631ece186e9d631a04a207846688aebf42d Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Wed, 21 Jan 2009 04:36:02 +0100 Subject: [PATCH] autogen.sh : Use git submodule --- autogen.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/autogen.sh b/autogen.sh index f7bd8a1..605f1cf 100755 --- a/autogen.sh +++ b/autogen.sh @@ -5,13 +5,13 @@ DIE=0 package=gst-python srcfile=gst/gstmodule.c -# 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 # ensure that we have the dirs we put ext libs in to appease automake mkdir -p gst-libs/ext/ffmpeg/ffmpeg -- 2.7.4