From: kremlin Date: Fri, 15 Aug 2014 20:51:57 +0000 (-0500) Subject: minor, change CFLAGS operator to '=' over '+=' X-Git-Url: http://uglyman.kremlin.cc/gitweb/gitweb.cgi?a=commitdiff_plain;h=e1d23aa186b890d96334724a604dd56350143a70;p=systembsd.git 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 --- 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