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:
authorMarek Safar <marek.safar@gmail.com>2016-12-22 13:37:21 +0300
committerMarek Safar <marek.safar@gmail.com>2016-12-22 13:37:21 +0300
commite063415208e2c3ec76b79808078ad58e55e91e32 (patch)
treeb1fab22b79d01b55e44039c0656cc524e5838fba /mcs/packages
parent27ab4a81758f424a6a62ad096cd300f1ee9f2780 (diff)
[build] install csc aot images from aot folder
Diffstat (limited to 'mcs/packages')
-rw-r--r--mcs/packages/Makefile5
1 files changed, 0 insertions, 5 deletions
diff --git a/mcs/packages/Makefile b/mcs/packages/Makefile
index d3d99b06142..34a4d83fa9c 100644
--- a/mcs/packages/Makefile
+++ b/mcs/packages/Makefile
@@ -12,10 +12,6 @@ ROSLYN_FILES = \
$(ROSLYN_CSC_DIR)/System.Collections.Immutable.dll \
$(ROSLYN_CSC_DIR)/System.Reflection.Metadata.dll
-ROSLYN_AOT_FILES = \
- $(ROSLYN_CSC_DIR)/csc.exe$(PLATFORM_AOT_SUFFIX) \
- $(ROSLYN_CSC_DIR)/System.Reflection.Metadata.dll$(PLATFORM_AOT_SUFFIX)
-
DISTFILES = $(ROSLYN_FILES)
ifeq ($(PROFILE), $(DEFAULT_PROFILE))
@@ -25,7 +21,6 @@ TARGET_DIR = $(DESTDIR)$(mono_libdir)/mono/$(FRAMEWORK_VERSION)
install-local:
$(MKINSTALLDIRS) $(TARGET_DIR)
$(INSTALL_LIB) $(ROSLYN_FILES) $(TARGET_DIR)
- if test x$(ENABLE_AOT) != x; then $(INSTALL_LIB) $(ROSLYN_AOT_FILES) $(TARGET_DIR); fi
endif