Browse Source

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

Originally committed as revision 12413 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Diego Biurrun 17 years ago
parent
commit
7853bf93b2
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      Makefile
  2. +1
    -1
      common.mak

+ 1
- 1
Makefile View File

@@ -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


+ 1
- 1
common.mak View File

@@ -63,7 +63,7 @@ checkheaders: $(filter-out %_template.ho,$(ALLHEADERS:.h=.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 \


Loading…
Cancel
Save