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:
authorRaja R Harinath <harinath@hurrynot.org>2005-02-04 08:47:32 +0300
committerRaja R Harinath <harinath@hurrynot.org>2005-02-04 08:47:32 +0300
commitfbf774fc82388b6a3224ea41d1c4e1930ce66b27 (patch)
tree6ad44a2eb4b1dd5d5628e1f89ff0f1715caa9c2c /runtime
parent690760dfc29f22fa565c2779281702f24bffa3c8 (diff)
* runtime/Makefile.am (verify_profiles): Remove.
(mcs-compileall): Use $(build_profiles) directly. It now works on the net_2_0 profile too. svn path=/trunk/mono/; revision=40106
Diffstat (limited to 'runtime')
-rw-r--r--runtime/Makefile.am5
1 files changed, 1 insertions, 4 deletions
diff --git a/runtime/Makefile.am b/runtime/Makefile.am
index 24d6630a5d5..3d5e8c348de 100644
--- a/runtime/Makefile.am
+++ b/runtime/Makefile.am
@@ -88,12 +88,9 @@ mcs-do-run-test-profiles: test-support-files
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
-verify_profiles = $(filter-out net_2_0, $(build_profiles))
-#verify_profiles = $(build_profiles)
mcs-compileall: test-support-files
save_MONO_PATH=$$MONO_PATH; mcs_topdir=`cd $(mcs_topdir) && pwd`; ret=:; \
- for profile in $(verify_profiles); do \
+ for profile in $(build_profiles); do \
MONO_PATH="$$mcs_topdir/class/lib/$$profile:$$save_MONO_PATH"; export MONO_PATH; \
for i in $(mcs_topdir)/class/lib/$$profile/*.dll $(mcs_topdir)/class/lib/$$profile/*.exe; do \
if ./$(tmpinst)/bin/mono --compile-all $$i; then \