diff options
author | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2003-06-11 19:42:20 +0000 |
---|---|---|
committer | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2003-06-11 19:42:20 +0000 |
commit | 10697c26c743220be367f19ff938737075438dab (patch) | |
tree | 5f5bea546f5eb14c16a518073475749137463792 | |
parent | 7ee783557daa72f6ffb90b8e491991441f00a4ac (diff) | |
download | gst-plugins-bad-10697c26c743220be367f19ff938737075438dab.tar.gz gst-plugins-bad-10697c26c743220be367f19ff938737075438dab.tar.bz2 gst-plugins-bad-10697c26c743220be367f19ff938737075438dab.zip |
Fix 114948 - adds some autotools magic that makes sure that we only make install ffmpeg if its actually there
Original commit message from CVS:
Fix 114948 - adds some autotools magic that makes sure that we only make install ffmpeg if its actually there
-rw-r--r-- | gst-libs/ext/ffmpeg/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gst-libs/ext/ffmpeg/Makefile.am b/gst-libs/ext/ffmpeg/Makefile.am index 6996020f..58bbda69 100644 --- a/gst-libs/ext/ffmpeg/Makefile.am +++ b/gst-libs/ext/ffmpeg/Makefile.am @@ -73,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: |