mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
autogen.sh: execute ffmpeg's autogen.sh directly
Original commit message from CVS: * autogen.sh: execute ffmpeg's autogen.sh directly * gst-libs/ext/ffmpeg/autogen.sh: Add a #! line. Specify bash, since there are bashisms ('local').
This commit is contained in:
parent
cbeebe3b43
commit
7a7e40caff
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2004-12-18 David Schleef <ds@schleef.org>
|
||||||
|
|
||||||
|
* autogen.sh: execute ffmpeg's autogen.sh directly
|
||||||
|
* gst-libs/ext/ffmpeg/autogen.sh: Add a #! line. Specify bash,
|
||||||
|
since there are bashisms ('local').
|
||||||
|
|
||||||
2004-12-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
2004-12-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||||
|
|
||||||
* ext/ffmpeg/gstffmpegprotocol.c: (gst_ffmpegdata_open),
|
* ext/ffmpeg/gstffmpegprotocol.c: (gst_ffmpegdata_open),
|
||||||
|
|
|
@ -95,7 +95,8 @@ rm -f gst-libs/ext/ffmpeg/configure
|
||||||
# now, run ffmpeg's autogen
|
# now, run ffmpeg's autogen
|
||||||
echo "+ running autogen.sh in gst-libs/ext/ffmpeg"
|
echo "+ running autogen.sh in gst-libs/ext/ffmpeg"
|
||||||
cd gst-libs/ext/ffmpeg
|
cd gst-libs/ext/ffmpeg
|
||||||
sh autogen.sh || exit 1
|
chmod +x autogen.sh
|
||||||
|
./autogen.sh || exit 1
|
||||||
cd ../../..
|
cd ../../..
|
||||||
|
|
||||||
test -n "$NOCONFIGURE" && {
|
test -n "$NOCONFIGURE" && {
|
||||||
|
|
Loading…
Reference in a new issue