Fix stupid typo in the Makefile

This commit is contained in:
Oliver Brakmann
2015-06-14 23:29:31 +02:00
parent ae8b146d2d
commit 1f29bb6faa

View File

@@ -44,9 +44,9 @@ COMMON_LIBS = System.dll System.Core.dll System.Data.dll System.Data.DataSetExte
DEBUG = true DEBUG = true
ifeq ($(DEBUG), $(filter $(DEBUG),false no n off 0)) ifeq ($(DEBUG), $(filter $(DEBUG),false no n off 0))
CSCFLAGS += -debug:pdbonly -optimize+ CSFLAGS += -debug:pdbonly -optimize+
else else
CSCFLAGS += -debug:full -optimize- CSFLAGS += -debug:full -optimize-
DEFINE := DEBUG;$(DEFINE) DEFINE := DEBUG;$(DEFINE)
endif endif