summaryrefslogtreecommitdiffstats
path: root/autogen.sh
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2005-09-06 14:05:33 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2005-09-06 14:05:33 +0000
commit5cfcaf5ec60a48fa4d04283a733913552fe8d9a2 (patch)
treedf2abf053a51482983c9ae619d1e8e3e260b0a18 /autogen.sh
parent4ba0f2adac627524b2154257bd47dd9cdfa61362 (diff)
releasing 0.9.2
Original commit message from CVS: releasing 0.9.2
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh16
1 files changed, 8 insertions, 8 deletions
diff --git a/autogen.sh b/autogen.sh
index 9b90dd39..69c0b439 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -5,17 +5,17 @@ DIE=0
package=gst-plugins
srcfile=gst/law/alaw.c
-# a quick cvs co if necessary to alleviate the pain - may remove this
-# when developers get a clue ;)
-if test ! -d common;
-then
+# a quick cvs co to ease the transition
+if test ! -d common;
+then
echo "+ getting common/ from cvs"
- cvs co common
+ if test -e CVS/Tag
+ then
+ TAG="-r `tail -c +2 CVS/Tag`"
+ fi
+ cvs co $TAG common
fi
-# ensure that we have the dirs we put ext libs in to appease automake
-#mkdir -p gst-libs/ext/ffmpeg/ffmpeg
-
# source helper functions
if test ! -f common/gst-autogen.sh;
then