From aa4e15dfb588f060c4e9a7a5d652e656fd3ed553 Mon Sep 17 00:00:00 2001 From: kremlin Date: Fri, 15 Aug 2014 15:51:57 -0500 Subject: [PATCH 1/1] 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 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.41.0