diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2005-09-06 10:33:18 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2005-09-06 10:33:18 +0000 |
commit | 183bca41169a672ff2c2434a2cd9c49fe2f70283 (patch) | |
tree | 6089c7a1e666a0cc3ac3cd0870fd9737bf5f8421 /autogen.sh | |
parent | bfa6a39892928b0f55f3b8566c0fb5559680725b (diff) | |
download | gstreamer-plugins-base-183bca41169a672ff2c2434a2cd9c49fe2f70283.tar.gz |
try fix distcheck for FC3
Original commit message from CVS:
try fix distcheck for FC3
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/autogen.sh b/autogen.sh index bdc358c07..faf204d2b 100755 --- a/autogen.sh +++ b/autogen.sh @@ -5,17 +5,17 @@ DIE=0 package=gst-plugins-base srcfile=gst/sine/gstsinesrc.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 |