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:
authorRolf Bjarne Kvinge <rolf@xamarin.com>2015-09-11 18:55:55 +0300
committerRolf Bjarne Kvinge <rolf@xamarin.com>2015-09-11 18:55:56 +0300
commitd3e4c19f3fa2e8d15eacdf4a56a7561ab5a25917 (patch)
treeefaf586fcaa2ec9e6f6a6eb13646fd2aa3fa558f /mcs/class/System.Xaml
parentbba04867929d3d5b55d94fffc17aef7e6a2354b1 (diff)
[System.Xaml] Make build logic more logical.
FRAMEWORK_VERSION_MAJOR is 2 for the mobile profiles, so filtering on the profile name will do nothing at all. This means listing the mobile profiles here is completely redundant, so simplify to just building when FRAMEWORK_VERSION_MAJOR=4.
Diffstat (limited to 'mcs/class/System.Xaml')
-rw-r--r--mcs/class/System.Xaml/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/System.Xaml/Makefile b/mcs/class/System.Xaml/Makefile
index 4b87a21275b..5f96dcbd7d7 100644
--- a/mcs/class/System.Xaml/Makefile
+++ b/mcs/class/System.Xaml/Makefile
@@ -15,7 +15,7 @@ TEST_EXTRA_DISTFILES = \
Test/XmlFiles/*.xml \
Test/XmlFiles/*.xaml
-VALID_PROFILE := $(filter 4 monodroid monotouch monotouch_watch mobile mobile_static, $(FRAMEWORK_VERSION_MAJOR))
+VALID_PROFILE := $(filter 4, $(FRAMEWORK_VERSION_MAJOR))
ifndef VALID_PROFILE
LIBRARY_NAME = dummy-System.Xaml.dll
NO_INSTALL = yes