1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-22 15:39:03 +00:00

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.
This commit is contained in:
david
2008-04-25 23:54:33 +00:00
parent e902f3be2e
commit 5f2375d3e7

View File

@@ -260,5 +260,5 @@ config.status: configure
./config.status --recheck
makefile.dep:
$(CXX) -MM $(CXXFLAGS) $(CPPFLAGS) $(SRCS) > $@
$(CXX) -MM $(CPPFLAGS) $(SRCS) > $@
include makefile.dep