Skip to content
Snippets Groups Projects
Commit 0032cac2 authored by Måns Rullgård's avatar Måns Rullgård
Browse files

fix make dep with some gcc versions

Originally committed as revision 6988 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 38ca53da
No related branches found
No related tags found
No related merge requests found
......@@ -208,7 +208,7 @@ ifeq ($(CONFIG_VHOOK),yes)
endif
.depend: $(SRCS) version.h
$(CC) -MM $(CFLAGS) $(SDL_CFLAGS) $^ 1>.depend
$(CC) -MM $(CFLAGS) $(SDL_CFLAGS) $(filter-out %.h,$^) 1>.depend
.libs: lib
@test -f .libs || touch .libs
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment