From 26c75b8a622691c5a99b8b3ab898ff15cbd7cdfe Mon Sep 17 00:00:00 2001 From: jbevain Date: Mon, 20 Jul 2009 09:06:50 +0000 Subject: [PATCH] 2009-07-20 Jb Evain * Makefile: filter the valid profile on the framework version, to make it easier to have custom variants. git-svn-id: svn+ssh://mono-cvs.ximian.com/source/trunk/mcs@138204 e3ebcda4-bce8-0310-ba0a-eca2169e7518 --- class/System.Net/ChangeLog | 5 +++++ class/System.Net/Makefile | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/class/System.Net/ChangeLog b/class/System.Net/ChangeLog index 98f49b0366..1d999d040c 100644 --- a/class/System.Net/ChangeLog +++ b/class/System.Net/ChangeLog @@ -1,3 +1,8 @@ +2009-07-20 Jb Evain + + * Makefile: filter the valid profile on the framework version, + to make it easier to have custom variants. + 2009-07-14 Sebastien Pouliot * System.Net.dll.sources: Remove extra files not needed to diff --git a/class/System.Net/Makefile b/class/System.Net/Makefile index 330da9641d..89a625fba8 100644 --- a/class/System.Net/Makefile +++ b/class/System.Net/Makefile @@ -13,7 +13,7 @@ TEST_MCS_FLAGS = $(LIB_MCS_FLAGS) EXTRA_DISTFILES = -VALID_PROFILE := $(filter net_2_0 net_2_1_raw net_4_0, $(PROFILE)) +VALID_PROFILE := $(filter 2.0 2.1 4.0, $(FRAMEWORK_VERSION)) ifndef VALID_PROFILE LIBRARY_NAME = dummy-System.Net.dll NO_INSTALL = yes -- 2.11.4.GIT