From 0032cac2c9baa43a102cc339bfbd79bc209f9998 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?M=C3=A5ns=20Rullg=C3=A5rd?= <mans@mansr.com>
Date: Sun, 12 Nov 2006 16:37:32 +0000
Subject: [PATCH] fix make dep with some gcc versions

Originally committed as revision 6988 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 6c01a824f0f..344cfbc42db 100644
--- a/Makefile
+++ b/Makefile
@@ -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
-- 
GitLab