summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/makefile
diff options
context:
space:
mode:
authorSteven Noonan <steven@uplinklabs.net>2009-10-14 04:15:21 -0700
committerSteven Noonan <steven@uplinklabs.net>2009-10-14 04:15:21 -0700
commit96f8115e991844a9768de6f74213607e962d1af5 (patch)
tree0c7d75e4e04fc81d9264b856a71c58075a8b0d63 /crawl-ref/source/makefile
parented19f0ca7d04df240bbdeb3c120f53e8843fb14b (diff)
downloadcrawl-ref-96f8115e991844a9768de6f74213607e962d1af5.tar.gz
crawl-ref-96f8115e991844a9768de6f74213607e962d1af5.zip
makefile: fix warning flag order and contents
Signed-off-by: Steven Noonan <steven@uplinklabs.net>
Diffstat (limited to 'crawl-ref/source/makefile')
-rw-r--r--crawl-ref/source/makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/makefile b/crawl-ref/source/makefile
index 3fdb42db58..24d5337c30 100644
--- a/crawl-ref/source/makefile
+++ b/crawl-ref/source/makefile
@@ -342,13 +342,13 @@ endif # MacOS
endif # TILES
-CFWARN_L := -D_FORTIFY_SOURCE=0 -Wno-parentheses -Wwrite-strings -Wshadow -pedantic
-CFOTHERS_L = $(EXTERNAL_FLAGS) $(EXTRA_FLAGS) $(DEFINES) -DCLUA_BINDINGS $(SDL_CFLAGS)
ifeq ($(GCC_GTE_4_3_0),Yes)
CFWARN_L += -Wno-array-bounds
endif
+CFWARN_L += -Wno-parentheses -Wwrite-strings -Wshadow -pedantic -D_FORTIFY_SOURCE=0
+CFOTHERS_L = $(EXTERNAL_FLAGS) $(EXTRA_FLAGS) $(DEFINES) -DCLUA_BINDINGS $(SDL_CFLAGS)
#
# Figure out the build settings for this type of build