From 6fd7c4101245597b842ab78de09d0446ec0908a3 Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Wed, 20 May 2015 10:41:17 +0200 Subject: [PATCH] Restore the default value for CFLAGS Commit 0ca6864 changed CFLAGS to be taken from the environment, but without using any default value. This patch restores the old CFLAGS value as the default one. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index dfdfb61..ab0b5f9 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -#CFLAGS= -Wall -O2 +CFLAGS?= -Wall -O2 SBINDIR= /sbin BINDIR= /bin USRBINDIR= /usr/bin