Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2004-02-12 04:40:36 +0300
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2004-02-12 04:40:36 +0300
commit674ed42fa19686fce9d9c77dc6fafce01a74e7ac (patch)
treeb0a37c1abe9e4814532072126e7cf39fdc0ce49f /mcs/class/System/Makefile
parent1ccd257868d805a2d892388384ff8b7a24ec528b (diff)
2004-01-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* System.Text.RegularExpressions/parser.cs: an opening brace without a quantifier do not cause a parse error. Fixes bug #52924. * Test/System.Text.RegularExpressions/RegexBugs.cs: added test from bug #52924. svn path=/trunk/mcs/; revision=23008
Diffstat (limited to 'mcs/class/System/Makefile')
-rw-r--r--mcs/class/System/Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/mcs/class/System/Makefile b/mcs/class/System/Makefile
index 78f06fb09ee..5f827f64346 100644
--- a/mcs/class/System/Makefile
+++ b/mcs/class/System/Makefile
@@ -8,7 +8,7 @@ LIBRARY = System.dll
# 1st pass - build System.dll without System.Xml.dll reference
# 2nd pass - build System.dll with System.Xml.dll reference
-LIB_MCS_FLAGS = /r:$(corlib) $(EXTRA_FLAGS)
+LIB_MCS_FLAGS = /r:$(corlib) $(EXTRA_FLAGS) /define:XML_DEP /r:System.Xml.dll
TEST_MCS_FLAGS = /nowarn:1595 /nowarn:0618
CYCLIC_DEP = System.Xml.dll
@@ -18,7 +18,6 @@ EXTRA_DISTFILES = \
System.ComponentModel.Design/Changelog \
Test/test-config-file
-
ifdef SECOND_PASS
include ../../build/library.make
else