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:
authorVincent Povirk <vincent@codeweavers.com>2016-12-21 01:42:54 +0300
committerVincent Povirk <vincent@codeweavers.com>2016-12-21 01:45:42 +0300
commitba6c212d3208b828900a0642afe17c6d13013b33 (patch)
tree29381b2437a6d9d63d792062fab3f2a66e05537f /mcs/packages
parent66d4425f049880bca9241e0aacf7482ecfc248e0 (diff)
Fix roslyn install with AOT disabled.
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 22026f58078..d3d99b06142 100644
--- a/mcs/packages/Makefile
+++ b/mcs/packages/Makefile
@@ -25,7 +25,7 @@ TARGET_DIR = $(DESTDIR)$(mono_libdir)/mono/$(FRAMEWORK_VERSION)
install-local:
$(MKINSTALLDIRS) $(TARGET_DIR)
$(INSTALL_LIB) $(ROSLYN_FILES) $(TARGET_DIR)
- $(INSTALL_LIB) $(ROSLYN_AOT_FILES) $(TARGET_DIR)
+ if test x$(ENABLE_AOT) != x; then $(INSTALL_LIB) $(ROSLYN_AOT_FILES) $(TARGET_DIR); fi
endif