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
path: root/mcs/build
diff options
context:
space:
mode:
authorMarek Habersack <grendel@twistedcode.net>2008-05-29 03:43:02 +0400
committerMarek Habersack <grendel@twistedcode.net>2008-05-29 03:43:02 +0400
commita48b0ad4d012656cc0518295a3b198adce628ecc (patch)
tree106be81f5b19d44c0c6d75d67d16101da81c5369 /mcs/build
parentcf49b7dc9a21812d2b22e7704202b69c9e1307c3 (diff)
Revert r104184 - changing the default profile to net_2_0 is not enough.
There is no way to build libraries for the 1.x profiles outside the main build once that change is applied (i.e. make PROFILE=net_1_0 or make PROFILE=net_1_1 don't work, as class/lib/ doesn't contain the net_1_0 or net_1_1 directories). That makes testing changes to the 1.1 profile more tedious than it should be. svn path=/trunk/mcs/; revision=104351
Diffstat (limited to 'mcs/build')
-rw-r--r--mcs/build/ChangeLog4
-rw-r--r--mcs/build/rules.make2
2 files changed, 1 insertions, 5 deletions
diff --git a/mcs/build/ChangeLog b/mcs/build/ChangeLog
index e16e31a1dff..9ded8c8bfdf 100644
--- a/mcs/build/ChangeLog
+++ b/mcs/build/ChangeLog
@@ -3,10 +3,6 @@
* executable.make ($(PROGRAM_config)): Depend on directory
creation stamp.
-2008-05-27 Zoltan Varga <vargaz@gmail.com>
-
- * rules.make (PROFILE): Make the 2.0 profile the default.
-
2008-04-09 Gert Driesen <drieseng@users.sourceforge.net>
* library.make: hidden -bootstrap option for gacutil is no longer
diff --git a/mcs/build/rules.make b/mcs/build/rules.make
index 684f93708a8..88de436c882 100644
--- a/mcs/build/rules.make
+++ b/mcs/build/rules.make
@@ -89,7 +89,7 @@ endif
# Rest of the configuration
ifndef PROFILE
-PROFILE = net_2_0
+PROFILE = default
endif
include $(topdir)/build/profiles/$(PROFILE).make