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>2005-01-30 11:06:04 +0300
committerZoltan Varga <vargaz@gmail.com>2005-01-30 11:06:04 +0300
commitdc9e6fcfe7e3a606c64c1d378650bd55df733e41 (patch)
tree9468010cd3b899f77387da07c124706cbc0857a0 /runtime
parenta3be148bfa644f5681d2a6ba9e5ede8f234eba64 (diff)
2005-01-30 Zoltan Varga <vargaz@freemail.hu>
* runtime/Makefile.am (mcs-compileall): Disable this for the 2.0 profile because of bug #71963. svn path=/trunk/mono/; revision=39781
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