Fix Makefile issue on Windows
authorAlexander Köplinger <alex.koeplinger@outlook.com>
Sat, 3 Dec 2016 02:37:29 +0000 (03:37 +0100)
committerAlexander Köplinger <alex.koeplinger@outlook.com>
Sat, 3 Dec 2016 02:38:14 +0000 (03:38 +0100)
"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.

mcs/packages/Makefile

index 6dc4b4cf670e3dd8b93df534c28903954e29d39f..22026f58078007ab00bf39b92c74c1a34bb80945 100644 (file)
@@ -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)