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