[FFmpeg-cvslog] r12413 - in trunk: Makefile common.mak
diego
subversion
Mon Mar 10 21:12:27 CET 2008
Author: diego
Date: Mon Mar 10 21:12:27 2008
New Revision: 12413
Log:
Replace the awkward '1>' with the more natural '>'.
Modified:
trunk/Makefile
trunk/common.mak
Modified: trunk/Makefile
==============================================================================
--- trunk/Makefile (original)
+++ trunk/Makefile Mon Mar 10 21:12:27 2008
@@ -227,7 +227,7 @@ depend dep: .depend .vhookdep
$(MAKE-$(CONFIG_AVFILTER)) -C libavfilter depend
.depend: $(SRCS) version.h
- $(CC) -MM $(CFLAGS) $(filter-out %.h,$^) 1>.depend
+ $(CC) -MM $(CFLAGS) $(filter-out %.h,$^) > .depend
# gcc stupidly only outputs the basename of targets with -MM
.vhookdep: $(ALLHOOKS_SRCS) version.h
Modified: trunk/common.mak
==============================================================================
--- trunk/common.mak (original)
+++ trunk/common.mak Mon Mar 10 21:12:27 2008
@@ -63,7 +63,7 @@ checkheaders: $(filter-out %_template.ho
# gcc stupidly only outputs the basename of targets with -MM
depend dep: $(SRCS)
- $(CC) -MM $(CFLAGS) $^ | sed 's,[0-9a-z._-]*: \([a-z0-9]*/\).*,\1&,' 1>.depend
+ $(CC) -MM $(CFLAGS) $^ | sed 's,[0-9a-z._-]*: \([a-z0-9]*/\).*,\1&,' > .depend
clean::
rm -f *.o *~ *.a *.lib *.so *.so.* *.dylib *.dll \
More information about the ffmpeg-cvslog
mailing list