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:
authorMarek Safar <marek.safar@gmail.com>2007-12-04 14:06:32 +0300
committerMarek Safar <marek.safar@gmail.com>2007-12-04 14:06:32 +0300
commit62d4a7795473ec859690053144743d73de16652b (patch)
treef259a63c0b8a7be4e0e334b4541757f3e8d4d14f /runtime
parent7c81b3ab525b14e082b988f0349308c5651d2af0 (diff)
Fixed 3.5 build
svn path=/trunk/mono/; revision=90653
Diffstat (limited to 'runtime')
-rw-r--r--runtime/Makefile.am12
1 files changed, 10 insertions, 2 deletions
diff --git a/runtime/Makefile.am b/runtime/Makefile.am
index 9bf4b0a1cf1..ca72cb6fa8f 100644
--- a/runtime/Makefile.am
+++ b/runtime/Makefile.am
@@ -85,8 +85,16 @@ endif
mcs-compileall: mono-wrapper etc/mono/config
save_MONO_PATH=$$MONO_PATH; mcs_topdir=`cd $(mcs_topdir) && $(cur_dir_cmd)`; ok=:; \
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 \
+ if [ "net_3_5" = "$$profile" ]; then \
+ MONO_PATH="$$mcs_topdir/class/lib/$$profile$(PLATFORM_PATH_SEPARATOR)$$mcs_topdir/class/lib/net_2_0$(PLATFORM_PATH_SEPARATOR)$$save_MONO_PATH"; \
+ else \
+ MONO_PATH="$$mcs_topdir/class/lib/$$profile$(PLATFORM_PATH_SEPARATOR)$$save_MONO_PATH"; \
+ fi; \
+ export MONO_PATH; \
+ for i in $(mcs_topdir)/class/lib/$$profile/*.{dll,exe}; do \
+ if [ ! -f $$i ] ; then \
+ continue ; \
+ fi ; \
if ./mono-wrapper --compile-all $$i; then \
echo $$i verified OK; \
else \