From 1f29bb6faa30458fd30727c3944fa9a7b940d03c Mon Sep 17 00:00:00 2001 From: Oliver Brakmann Date: Sun, 14 Jun 2015 23:29:31 +0200 Subject: [PATCH] Fix stupid typo in the Makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 8eed9249e5..1835e0cc02 100644 --- a/Makefile +++ b/Makefile @@ -44,9 +44,9 @@ COMMON_LIBS = System.dll System.Core.dll System.Data.dll System.Data.DataSetExte DEBUG = true ifeq ($(DEBUG), $(filter $(DEBUG),false no n off 0)) -CSCFLAGS += -debug:pdbonly -optimize+ +CSFLAGS += -debug:pdbonly -optimize+ else -CSCFLAGS += -debug:full -optimize- +CSFLAGS += -debug:full -optimize- DEFINE := DEBUG;$(DEFINE) endif