aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkremlin <ian@kremlin.cc>2014-08-16 04:51:57 +0800
committerkremlin <ian@kremlin.cc>2014-08-16 04:51:57 +0800
commitaa4e15dfb588f060c4e9a7a5d652e656fd3ed553 (patch)
treec7fb6f94cd6c21837531ec397f973b4608b3f2cf
parent6291d74b01f95a6d7cb501f2b9d08e4a6cb10643 (diff)
downloadsystembsd-aa4e15dfb588f060c4e9a7a5d652e656fd3ed553.tar
systembsd-aa4e15dfb588f060c4e9a7a5d652e656fd3ed553.tar.gz
systembsd-aa4e15dfb588f060c4e9a7a5d652e656fd3ed553.tar.bz2
systembsd-aa4e15dfb588f060c4e9a7a5d652e656fd3ed553.tar.lz
systembsd-aa4e15dfb588f060c4e9a7a5d652e656fd3ed553.tar.xz
systembsd-aa4e15dfb588f060c4e9a7a5d652e656fd3ed553.tar.zst
systembsd-aa4e15dfb588f060c4e9a7a5d652e656fd3ed553.zip
minor, change CFLAGS operator to '=' over '+='
setting CFLAGS in the makefile via += operator made it tag on an extra -O3 -pipe 1, causing the debug build to fail as it redundantly specifies -O0
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d5165a6..3e47048 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
.PHONY: all
CC?= /usr/bin/cc
-CFLAGS+= -Wall -Wextra -Werror -std=c89
+CFLAGS= -Wall -Wextra -Werror -std=c89
DEBUG= 1
.ifdef DEBUG