Commit 7853bf93 authored by Diego Biurrun's avatar Diego Biurrun

Replace the awkward '1>' with the more natural '>'.

Originally committed as revision 12413 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 3c889b5c
...@@ -227,7 +227,7 @@ depend dep: .depend .vhookdep ...@@ -227,7 +227,7 @@ depend dep: .depend .vhookdep
$(MAKE-$(CONFIG_AVFILTER)) -C libavfilter depend $(MAKE-$(CONFIG_AVFILTER)) -C libavfilter depend
.depend: $(SRCS) version.h .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 # gcc stupidly only outputs the basename of targets with -MM
.vhookdep: $(ALLHOOKS_SRCS) version.h .vhookdep: $(ALLHOOKS_SRCS) version.h
......
...@@ -63,7 +63,7 @@ checkheaders: $(filter-out %_template.ho,$(ALLHEADERS:.h=.ho)) ...@@ -63,7 +63,7 @@ checkheaders: $(filter-out %_template.ho,$(ALLHEADERS:.h=.ho))
# gcc stupidly only outputs the basename of targets with -MM # gcc stupidly only outputs the basename of targets with -MM
depend dep: $(SRCS) 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:: clean::
rm -f *.o *~ *.a *.lib *.so *.so.* *.dylib *.dll \ rm -f *.o *~ *.a *.lib *.so *.so.* *.dylib *.dll \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment