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:
authorAlex Rønne Petersen <alexrp@xamarin.com>2015-01-30 17:52:01 +0300
committerAlex Rønne Petersen <alexrp@xamarin.com>2015-02-03 05:41:14 +0300
commit351e94964c0c118616165089d5d831dfdccaebec (patch)
tree68db9be1df7034c1ba4a818a0da08edffb83b1b3 /mcs/class/System.Configuration
parent43a0088f3fb980b00506f9cd9cac65db69a929ca (diff)
Remove obsolete profiles and profile checks from the build system.
* Removed all old profiles from VALID_PROFILE checks. * Removed most logic under checks like ifeq (net_2_0), $(PROFILE)) as it is dead code now that those old profiles are gone. * Simplified the list of assemblies in mcs/class/Makefile now that we only have one profile. * LIBRARY_NEEDS_POSTPROCESSING has been removed as it was only used by old 1.x assemblies that no longer exist. * Build logic that sets MONO_PATH now points to mcs/class/lib/net_4_5 instead of mcs/class/lib/net_2_0.
Diffstat (limited to 'mcs/class/System.Configuration')
-rw-r--r--mcs/class/System.Configuration/Test/standalone/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/System.Configuration/Test/standalone/Makefile b/mcs/class/System.Configuration/Test/standalone/Makefile
index bdc6757d31d..27c1e415479 100644
--- a/mcs/class/System.Configuration/Test/standalone/Makefile
+++ b/mcs/class/System.Configuration/Test/standalone/Makefile
@@ -6,7 +6,7 @@ check: local compare
local: $(TESTS)
@for i in $(TESTS); do \
echo running test $$i; \
- MONO_PATH=../../../lib/net_2_0 mono --debug $$i > $$i.result; \
+ MONO_PATH=../../../lib/net_4_5 mono --debug $$i > $$i.result; \
done
compare: