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:
authorRodrigo Kumpera <kumpera@gmail.com>2009-05-07 23:03:57 +0400
committerRodrigo Kumpera <kumpera@gmail.com>2009-05-07 23:03:57 +0400
commiteea229ca4608005216e99ca17e45199b008f232d (patch)
tree7a1b91d2c9076839f3a63799355eb8430068b748 /runtime
parentf79232a89cc25f4929d11f888fa67e8017a6299a (diff)
2009-05-07 Rodrigo Kumpera <rkumpera@novell.com>
* runtime/Makefile.am (mcs-compileall): Pass --security=validil to the runtime so the assemblies are not required to be verifiable. svn path=/trunk/mono/; revision=133737
Diffstat (limited to 'runtime')
-rw-r--r--runtime/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/Makefile.am b/runtime/Makefile.am
index b30be6388fc..e0a78455a44 100644
--- a/runtime/Makefile.am
+++ b/runtime/Makefile.am
@@ -117,7 +117,7 @@ mcs-compileall: mono-wrapper etc/mono/config
if [ ! -f $$i ] ; then \
continue ; \
fi ; \
- if ./mono-wrapper --compile-all --verify-all $$i; then \
+ if ./mono-wrapper --compile-all --verify-all --security=validil $$i; then \
echo $$i verified OK; \
else \
echo $$i verification failed; ok=false; \