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:
authorNiklas Therning <niklas@therning.org>2016-12-06 13:00:18 +0300
committerMarek Safar <marek.safar@gmail.com>2016-12-06 18:27:49 +0300
commit9fa84f129f92dc722e238a5d4a9d95e8c591cdf9 (patch)
tree72ffb03c81ee0d7103e863cbada1da1b79bbafca /mcs/class/Microsoft.Build.Engine
parentc0c7503ae7c7a81b35b95bae5f246745828bf375 (diff)
Fix Microsoft.Build.Engine fail when built with mcs
Fixes the Makefile to not fail if the compiler hasn't generated a pdb file for the TestTasks dll.
Diffstat (limited to 'mcs/class/Microsoft.Build.Engine')
-rw-r--r--mcs/class/Microsoft.Build.Engine/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/mcs/class/Microsoft.Build.Engine/Makefile b/mcs/class/Microsoft.Build.Engine/Makefile
index 3c6915a0b75..57beae86432 100644
--- a/mcs/class/Microsoft.Build.Engine/Makefile
+++ b/mcs/class/Microsoft.Build.Engine/Makefile
@@ -28,7 +28,9 @@ test-local: compile-resources
compile-resources: Test/resources/TestTasks-$(PROFILE).dll
cp Test/resources/TestTasks-$(PROFILE).dll Test/resources/TestTasks.dll
+ifndef MCS_MODE
cp Test/resources/TestTasks-$(PROFILE).pdb Test/resources/TestTasks.pdb
+endif
include $(XBUILD_DIR)/xbuild_test.make
include ../../build/library.make