From b4e3ce5de64a7212183fd2fb149883c7bf9b603b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Thu, 17 Jan 2013 20:40:38 +0100 Subject: [PATCH] fix make for mono 3 error CS1902: Invalid debug option `+'. Valid options are `full' or `pdbonly' --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c557d5e1b3..b9e8bb7a8e 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ CSC = gmcs -CSFLAGS = -nologo -warn:4 -debug:+ -debug:full -optimize- -codepage:utf8 -unsafe +CSFLAGS = -nologo -warn:4 -debug:full -optimize- -codepage:utf8 -unsafe DEFINE = DEBUG;TRACE COMMON_LIBS = System.dll System.Core.dll System.Drawing.dll System.Xml.dll thirdparty/ICSharpCode.SharpZipLib.dll PHONY = core tools package all mods clean distclean