From fc4424ef21864fff84c66c3616cfb34b40b0ba8e Mon Sep 17 00:00:00 2001 From: fyodor Date: Sat, 13 Sep 2008 07:16:35 +0000 Subject: [PATCH] Add CXXFLAGS to the makefile.dep creation rule to catch defines such as -DNOLUA which prevents files from trying to include the liblua includes. Suggested by Simon Zilliken --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index a0d062564..1ae4eb31f 100644 --- a/Makefile.in +++ b/Makefile.in @@ -258,5 +258,5 @@ config.status: configure ./config.status --recheck makefile.dep: - $(CXX) -MM $(CPPFLAGS) $(SRCS) > $@ + $(CXX) -MM $(CPPFLAGS) $(CXXFLAGS) $(SRCS) > $@ include makefile.dep