summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-08-01 22:56:02 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-08-01 22:56:02 +0000
commit06c2f22b53bdd978a6f9de265951bda8d1401937 (patch)
tree86af6afa71926e29ffc466d15461ac5e8122812d
parent27def7b52a24c03f270ce66b9b175ab227cfa21b (diff)
downloadlibparserutils-06c2f22b53bdd978a6f9de265951bda8d1401937.tar.gz
libparserutils-06c2f22b53bdd978a6f9de265951bda8d1401937.tar.bz2
Ensure local include path overrides buildsystem settings.
svn path=/trunk/libparserutils/; revision=8966
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 283ea80..2a9bb31 100644
--- a/Makefile
+++ b/Makefile
@@ -17,8 +17,8 @@ ifneq ($(GCCVER),2)
WARNFLAGS := $(WARNFLAGS) -Wextra -Werror
endif
-CFLAGS := $(CFLAGS) -D_BSD_SOURCE -I$(CURDIR)/include/ \
- -I$(CURDIR)/src $(WARNFLAGS)
+CFLAGS := -D_BSD_SOURCE -I$(CURDIR)/include/ \
+ -I$(CURDIR)/src $(WARNFLAGS) $(CFLAGS)
ifneq ($(GCCVER),2)
CFLAGS := $(CFLAGS) -std=c99
else