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:
Diffstat (limited to 'runtime')
-rw-r--r--runtime/Makefile.am3
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/Makefile.am b/runtime/Makefile.am
index e804b011da4..f4fc8cb4805 100644
--- a/runtime/Makefile.am
+++ b/runtime/Makefile.am
@@ -90,8 +90,9 @@ mcs-do-run-test-profiles:
rm -fr $(tmpinst) ; $$ret
# Use --compile-all as a poor man's PEVerify to detect invalid IL
+# This doesn't yet work on the 2.0 profile (bug #71963)
mcs-compileall:
- d=`pwd`; for profile in $(build_profiles); do for i in $(mcs_topdir)/class/lib/$$profile/*.dll $(mcs_topdir)/class/lib/$$profile/*.exe; do echo $$i; $$d/mono-wrapper --compile-all $$i || exit 1; done; done
+ d=`pwd`; for profile in default; do for i in $(mcs_topdir)/class/lib/$$profile/*.dll $(mcs_topdir)/class/lib/$$profile/*.exe; do echo $$i; $$d/mono-wrapper --compile-all $$i || exit 1; done; done
check-local: mcs-compileall mcs-do-test-profiles
$(MAKE) $(test_select) mcs-do-run-test-profiles