2005-01-30 Zoltan Varga <vargaz@freemail.hu>
authorZoltan Varga <vargaz@gmail.com>
Sun, 30 Jan 2005 08:06:04 +0000 (08:06 -0000)
committerZoltan Varga <vargaz@gmail.com>
Sun, 30 Jan 2005 08:06:04 +0000 (08:06 -0000)
* runtime/Makefile.am (mcs-compileall): Disable this for the 2.0
profile because of bug #71963.

svn path=/trunk/mono/; revision=39781

ChangeLog
runtime/Makefile.am

index 2d5efdeef90ff865bdc99f05d312635b72679555..ac9196ce4436b3a485b44e2bb3105bbb583f5799 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
+
+       * runtime/Makefile.am (mcs-compileall): Disable this for the 2.0
+       profile because of bug #71963.
+
 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
 
        * runtime/Makefile.am (mcs-compileall): New test to compile all methods
index e804b011da4cbaa911bcc71bd7b54226247ce394..f4fc8cb48055d5e2a7f8d7f39c7cebec6355e2d9 100644 (file)
@@ -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