[FFmpeg-cvslog] examples/Makefile: remove duplicated -f switch
Stefano Sabatini
git at videolan.org
Tue Aug 28 20:10:42 CEST 2012
ffmpeg | branch: master | Stefano Sabatini <stefasab at gmail.com> | Tue Aug 28 20:06:45 2012 +0200| [2cbffc670684af98b758da0777c049c2b27c3279] | committer: Stefano Sabatini
examples/Makefile: remove duplicated -f switch
$(RM) already includes that flag.
Spotted-by: ubitux
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=2cbffc670684af98b758da0777c049c2b27c3279
---
doc/examples/Makefile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/doc/examples/Makefile b/doc/examples/Makefile
index 94db383..20dd5e1 100644
--- a/doc/examples/Makefile
+++ b/doc/examples/Makefile
@@ -29,7 +29,7 @@ muxing: LDLIBS += -lm
all: $(OBJS) $(EXAMPLES)
clean-test:
- $(RM) -f test*.pgm test.h264 test.mp2 test.sw test.mpg outscale*.pgm
+ $(RM) test*.pgm test.h264 test.mp2 test.sw test.mpg outscale*.pgm
clean: clean-test
- $(RM) -f $(EXAMPLES) $(OBJS)
+ $(RM) $(EXAMPLES) $(OBJS)
More information about the ffmpeg-cvslog
mailing list