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
diff options
context:
space:
mode:
authorJo Shields <jo.shields@xamarin.com>2015-09-04 13:55:28 +0300
committerJo Shields <jo.shields@xamarin.com>2015-09-07 11:37:39 +0300
commit9a8e7c657141cdba5e9405839dff6d39233220db (patch)
tree3741ddd62811331dc7206ba1895745bd00035dad /mcs
parenta8f85e720ea22b64380c06bb2493ccbade6a0e2e (diff)
[Facades] Fix profile name error causing non-building
The parallel build infrastructure we're trying to leverage for Facades depends on the profile name when populating the parallel lists - the default profile is now named "net_4_x", so variables with "net_4_5" in them are not considered - causing the whole Facades/ directory to be skipped
Diffstat (limited to 'mcs')
-rw-r--r--mcs/class/Facades/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/mcs/class/Facades/Makefile b/mcs/class/Facades/Makefile
index 3b73b258d1f..cf3b21526d6 100644
--- a/mcs/class/Facades/Makefile
+++ b/mcs/class/Facades/Makefile
@@ -30,7 +30,7 @@ reflection_PARALLEL_SUBDIRS = System.Reflection.Emit.ILGeneration System.Reflect
mobile_static_PARALLEL_SUBDIRS = $(monotouch_PARALLEL_SUBDIRS)
-net_4_5_PARALLEL_SUBDIRS = $(monotouch_PARALLEL_SUBDIRS) $(reflection_PARALLEL_SUBDIRS) System.Diagnostics.PerformanceCounter \
+net_4_x_PARALLEL_SUBDIRS = $(monotouch_PARALLEL_SUBDIRS) $(reflection_PARALLEL_SUBDIRS) System.Diagnostics.PerformanceCounter \
System.IO.FileSystem.Watcher System.IO.Pipes System.Security.Cryptography.ProtectedData System.ServiceProcess.ServiceController System.Net.Http.WebRequestHandler
monodroid_PARALLEL_SUBDIRS = $(monotouch_PARALLEL_SUBDIRS) $(reflection_PARALLEL_SUBDIRS)
@@ -40,7 +40,7 @@ xammac_net_4_5_PARALLEL_SUBDIRS = $(monotouch_PARALLEL_SUBDIRS) $(reflection_PAR
monotouch_watch_PARALLEL_SUBDIRS = $(monotouch_PARALLEL_SUBDIRS)
-PROFILE_SUBDIRS = $(net_4_5_PARALLEL_SUBDIRS)
+PROFILE_SUBDIRS = $(net_4_x_PARALLEL_SUBDIRS)
#OVERRIDE_TARGET_ALL = yes
@@ -66,7 +66,7 @@ include $(MCS_BUILD_DIR)/rules.make
dist-local: dist-default
-DIST_SUBDIRS = $(net_4_5_PARALLEL_SUBDIRS)
+DIST_SUBDIRS = $(net_4_x_PARALLEL_SUBDIRS)
doc-update-local:
@echo "not doing docs"