From 5f2375d3e7fa0d878b8c397771bf452f5bafa8da Mon Sep 17 00:00:00 2001 From: david Date: Fri, 25 Apr 2008 23:54:33 +0000 Subject: [PATCH] Don't use CXXFLAGS when building makefile.dep. CXXFLAGS contains "-arch ppc -arch i386" when building a universal binary on Mac OS X, and you can't generate dependencies while using those flags. Include directories were previously moved to CPPFLAGS so the right dependencies are still found. --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index ede7855ec..3596b4a1b 100644 --- a/Makefile.in +++ b/Makefile.in @@ -260,5 +260,5 @@ config.status: configure ./config.status --recheck makefile.dep: - $(CXX) -MM $(CXXFLAGS) $(CPPFLAGS) $(SRCS) > $@ + $(CXX) -MM $(CPPFLAGS) $(SRCS) > $@ include makefile.dep