diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2003-01-16 17:13:00 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2003-01-16 17:13:00 +0000 |
commit | 92271a07d6c76524dc9e4bf2a71cb892f24d5fed (patch) | |
tree | fb2c857b7bec4e3dc41212c1371af70dc3e6b912 /gst-libs/ext/ffmpeg/Makefile.am | |
parent | c74ac58b85f49a3c6c4af43689629ba2e4cde20e (diff) | |
download | gst-plugins-bad-92271a07d6c76524dc9e4bf2a71cb892f24d5fed.tar.gz gst-plugins-bad-92271a07d6c76524dc9e4bf2a71cb892f24d5fed.tar.bz2 gst-plugins-bad-92271a07d6c76524dc9e4bf2a71cb892f24d5fed.zip |
this is a better way
Original commit message from CVS:
this is a better way
Diffstat (limited to 'gst-libs/ext/ffmpeg/Makefile.am')
-rw-r--r-- | gst-libs/ext/ffmpeg/Makefile.am | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gst-libs/ext/ffmpeg/Makefile.am b/gst-libs/ext/ffmpeg/Makefile.am index 102065da..43774714 100644 --- a/gst-libs/ext/ffmpeg/Makefile.am +++ b/gst-libs/ext/ffmpeg/Makefile.am @@ -7,16 +7,18 @@ else FFMPEG_DIR= endif -# patch it up -all-am: Makefile patches +# patch it up before descending into dirs +all-recursive: patches # ignore failures on patching # ignore failures on rm PATCHES = patch/function.patch patches: + @echo -n Patching ffmpeg if necessary ... @patch -p0 -N -r rejects < patch/function.patch > /dev/null || true @rm -f rejects || true + @echo done. SUBDIRS = $(FFMPEG_DIR) |