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:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2016-12-03 05:37:29 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2016-12-03 05:38:14 +0300
commitf9eae79e15debaf10f422fc0f1fc1ef64f7e62ef (patch)
treeb5e66f54d2a8aefceab591935c3b95a09449eaef /mcs/packages
parent22830cfb64fbb46aa645582126ff26455a3caff8 (diff)
Fix Makefile issue on Windows
"Makefile:25: *** multiple target patterns. Stop.", according to web searches this is because of colons in the file path. install-local always runs so we don't really need the source files as dependency -> removing.
Diffstat (limited to 'mcs/packages')
-rw-r--r--mcs/packages/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/packages/Makefile b/mcs/packages/Makefile
index 6dc4b4cf670..22026f58078 100644
--- a/mcs/packages/Makefile
+++ b/mcs/packages/Makefile
@@ -22,7 +22,7 @@ ifeq ($(PROFILE), $(DEFAULT_PROFILE))
TARGET_DIR = $(DESTDIR)$(mono_libdir)/mono/$(FRAMEWORK_VERSION)
-install-local: $(ROSLYN_FILES) $(ROSLYN_AOT_FILES)
+install-local:
$(MKINSTALLDIRS) $(TARGET_DIR)
$(INSTALL_LIB) $(ROSLYN_FILES) $(TARGET_DIR)
$(INSTALL_LIB) $(ROSLYN_AOT_FILES) $(TARGET_DIR)