diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2002-12-30 12:23:24 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2002-12-30 12:23:24 +0000 |
commit | 23fc4db6728ac7da9e2b788917121b67c95796d7 (patch) | |
tree | ead2b6b599fd7452c61e434384d4184e61082f19 | |
parent | f21074a7f524168a47a8631fa3e6187f18df8da9 (diff) | |
download | gst-plugins-bad-23fc4db6728ac7da9e2b788917121b67c95796d7.tar.gz gst-plugins-bad-23fc4db6728ac7da9e2b788917121b67c95796d7.tar.bz2 gst-plugins-bad-23fc4db6728ac7da9e2b788917121b67c95796d7.zip |
a simple fix
Original commit message from CVS:
a simple fix
-rw-r--r-- | m4/as-slurp-ffmpeg.m4 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/m4/as-slurp-ffmpeg.m4 b/m4/as-slurp-ffmpeg.m4 index f520a2e0..eb1b88b4 100644 --- a/m4/as-slurp-ffmpeg.m4 +++ b/m4/as-slurp-ffmpeg.m4 @@ -17,7 +17,7 @@ AC_DEFUN(AS_SLURP_FFMPEG, if test ! -d $1; then mkdir -p $1; fi cd $1 - if test ! -d ffmpeg; then + if test ! -d ffmpeg/CVS; then # check out cvs code AC_MSG_NOTICE(checking out ffmpeg cvs code from $2 into $1) cvs -Q -d:pserver:anonymous@cvs.ffmpeg.sourceforge.net:/cvsroot/ffmpeg co -D $2 ffmpeg || FAILED=yes @@ -29,6 +29,7 @@ AC_DEFUN(AS_SLURP_FFMPEG, fi # now configure it + AC_MSG_NOTICE(configuring ffmpeg cvs code) ./configure # now go back |