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:
authorZoltan Varga <vargaz@gmail.com>2008-03-25 16:21:25 +0300
committerZoltan Varga <vargaz@gmail.com>2008-03-25 16:21:25 +0300
commitcda523d2882ffbcd548ec135084a8c3e94552bf5 (patch)
treed1d3e678675020a1b33d5b5350235fec0f3f4842 /runtime
parent642c702f03725cabca9895e4a84a2b7de4d5259b (diff)
2008-03-25 Zoltan Varga <vargaz@gmail.com>
* runtime/Makefile.am (mcs-compileall): Skip net 2.1 assemblies for now. svn path=/trunk/mono/; revision=98960
Diffstat (limited to 'runtime')
-rw-r--r--runtime/Makefile.am4
1 files changed, 4 insertions, 0 deletions
diff --git a/runtime/Makefile.am b/runtime/Makefile.am
index 984f0642c4b..1340c528d99 100644
--- a/runtime/Makefile.am
+++ b/runtime/Makefile.am
@@ -82,9 +82,13 @@ PLATFORM_PATH_SEPARATOR = :
endif
# Use --compile-all as a poor man's PEVerify to detect invalid IL
+# Skip net 2.1 assemblies for now because of visibility problems
mcs-compileall: mono-wrapper etc/mono/config
save_MONO_PATH=$$MONO_PATH; mcs_topdir=`cd $(mcs_topdir) && $(cur_dir_cmd)`; ok=:; \
for profile in $(build_profiles); do \
+ if [ "net_2_1" = "$$profile" ]; then \
+ break; \
+ fi; \
if [ "net_3_5" = "$$profile" ]; then \
MONO_PATH="$$mcs_topdir/class/lib/$$profile$(PLATFORM_PATH_SEPARATOR)$$mcs_topdir/class/lib/net_2_0$(PLATFORM_PATH_SEPARATOR)$$save_MONO_PATH"; \
else \