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:
authorMarek Safar <marek.safar@gmail.com>2007-06-12 20:59:23 +0400
committerMarek Safar <marek.safar@gmail.com>2007-06-12 20:59:23 +0400
commit2bf3bfd6c0bec7e5c544279418d90cab647fdcbd (patch)
tree8ef3daf4332d454c0bf121d94dbd84a01ab4291a /mcs/class/System.Security/Makefile
parent0f02310d11ee4f97caf5d2d183d2257906e7e48c (diff)
2007-06-12 Marek Safar <marek.safar@gmail.com>
* Makefile: Check only major framework version to do 2.x build. svn path=/trunk/mcs/; revision=79315
Diffstat (limited to 'mcs/class/System.Security/Makefile')
-rw-r--r--mcs/class/System.Security/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/System.Security/Makefile b/mcs/class/System.Security/Makefile
index 46736af6010..f82927277b4 100644
--- a/mcs/class/System.Security/Makefile
+++ b/mcs/class/System.Security/Makefile
@@ -9,7 +9,7 @@ LIB_MCS_FLAGS = -nowarn:618 \
TEST_MCS_FLAGS = $(LIB_MCS_FLAGS) -nowarn:169,219,1595
-ifeq (net_2_0,$(PROFILE))
+ifeq (2, $(FRAMEWORK_VERSION_MAJOR))
LIB_MCS_FLAGS += -r:Mono.Security.dll -nowarn:414
TEST_MCS_FLAGS += -nowarn:168,183,414
endif