diff options
author | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2003-06-18 11:01:28 +0000 |
---|---|---|
committer | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2003-06-18 11:01:28 +0000 |
commit | e1388bddd04119bad81130b81f400d6a434b8765 (patch) | |
tree | ec58340550ce27bf7ba533caceb63673940e268b /gst-libs/ext/ffmpeg | |
parent | 5543762f899d90a32adfa43fd823d3b76af5b384 (diff) | |
download | gst-plugins-bad-e1388bddd04119bad81130b81f400d6a434b8765.tar.gz gst-plugins-bad-e1388bddd04119bad81130b81f400d6a434b8765.tar.bz2 gst-plugins-bad-e1388bddd04119bad81130b81f400d6a434b8765.zip |
Fix build breakage
Original commit message from CVS:
Fix build breakage
Diffstat (limited to 'gst-libs/ext/ffmpeg')
-rw-r--r-- | gst-libs/ext/ffmpeg/Makefile.am | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gst-libs/ext/ffmpeg/Makefile.am b/gst-libs/ext/ffmpeg/Makefile.am index 383ff2aa..58bbda69 100644 --- a/gst-libs/ext/ffmpeg/Makefile.am +++ b/gst-libs/ext/ffmpeg/Makefile.am @@ -16,7 +16,7 @@ PATCHES = patch/function.patch patches: @echo -n Patching ffmpeg if necessary ... - @patch -p0 -N -r rejects < $(srcdir)/patch/function.patch > /dev/null || true + @patch -p0 -N -r rejects < patch/function.patch > /dev/null || true @rm -f rejects || true @echo done. @@ -32,6 +32,7 @@ DISTFILES = \ ffmpeg/INSTALL \ ffmpeg/README \ ffmpeg/VERSION \ + ffmpeg/config.mak \ ffmpeg/configure \ ffmpeg/Makefile \ ffmpeg/cygwin_inttypes.h \ @@ -72,8 +73,8 @@ checkout: cvs -d:pserver:anonymous@cvs.ffmpeg.sourceforge.net:/cvsroot/ffmpeg co ffmpeg # on running make install, make sure make has been run first -install: - cd ffmpeg && $(MAKE) +install: all + @true # we don't install stuff so no need to uninstall uninstall: |