summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2002-02-06 22:28:25 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2002-02-06 22:28:25 +0000
commit00f7eced6b086f6b766a639768259452d762ef32 (patch)
tree8175f18560b454e4207731da59666a2d1aa5eae5 /autogen.sh
parent19e0ea04589bb2416cea0d9fe383e8845ecc5ac6 (diff)
taaz: it doesn't work thomas: ok, I'll fix it.
Original commit message from CVS: taaz: it doesn't work thomas: ok, I'll fix it.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh13
1 files changed, 6 insertions, 7 deletions
diff --git a/autogen.sh b/autogen.sh
index ce34f19b9..2effce70c 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -6,13 +6,12 @@ package=GStreamer
srcfile=gst/gstobject.h
#DEBUG=defined
-for a in common libs/ext/cothreads; do
- if test ! -d $a;
- then
- echo "+ getting $a from cvs"
- cvs co $a
- fi
-done
+if test ! -d common; then
+ echo "+ getting common from cvs"; cvs co common
+fi
+if test ! -d libs/ext/cothreads; then
+ echo "+ getting cothreads from cvs"; cd libs/ext; cvs co cothreads
+fi
CONFIGURE_OPT='--enable-maintainer-mode --enable-plugin-builddir'