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:
-rw-r--r--ChangeLog1
-rw-r--r--runtime/Makefile.am2
2 files changed, 2 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 179e2726de2..24c1635a46c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,7 @@
* runtime/Makefile.am: Update. Pass 'monodis-wrapper' as ILDISASM
to sub-makes.
+ (mcs-compileall): Verify the fixed-up dll too.
* runtime/monodis-wrapper.in: New file.
* configure.in (runtime/monodis-wrapper): Create.
diff --git a/runtime/Makefile.am b/runtime/Makefile.am
index 6d4061f2b4a..8dc57d64105 100644
--- a/runtime/Makefile.am
+++ b/runtime/Makefile.am
@@ -87,7 +87,7 @@ mcs-compileall: mono-wrapper wrapper-config
save_MONO_PATH=$$MONO_PATH; mcs_topdir=`cd $(mcs_topdir) && $(cur_dir_cmd)`; ret=:; \
for profile in $(build_profiles); do \
MONO_PATH="$$mcs_topdir/class/lib/$$profile$(PLATFORM_PATH_SEPARATOR)$$save_MONO_PATH"; export MONO_PATH; \
- for i in $(mcs_topdir)/class/lib/$$profile/*.dll $(mcs_topdir)/class/lib/$$profile/*.exe; do \
+ for i in $(mcs_topdir)/class/lib/$$profile/*.dll $(mcs_topdir)/class/lib/$$profile/*.exe $(mcs_topdir)/class/Microsoft.VisualBasic/fixup/$$profile/*.dll; do \
if ./mono-wrapper --compile-all $$i; then \
echo $$i verified OK; \
else \