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-03-14 14:22:03 +0300
committerRaja R Harinath <harinath@hurrynot.org>2005-03-14 14:22:03 +0300
commitf4b16363ccbc078fca7bca0b7ebda29a22d1a720 (patch)
tree38f423be2776880f85c0c1261fc1e12d586ec302 /runtime
parente0c57918d1f72360749276868196020b8ebf65e1 (diff)
* runtime/Makefile.am (SUPPORT_FILES): New. List of dependencies from ...
(all-local): ... here. Use it. (install-local): Depend on $(SUPPORT_FILES). svn path=/trunk/mono/; revision=41790
Diffstat (limited to 'runtime')
-rw-r--r--runtime/Makefile.am6
1 files changed, 4 insertions, 2 deletions
diff --git a/runtime/Makefile.am b/runtime/Makefile.am
index c5c4af1d14f..29954d13526 100644
--- a/runtime/Makefile.am
+++ b/runtime/Makefile.am
@@ -17,8 +17,10 @@ etc/mono/2.0/machine.config: $(top_srcdir)/data/net_2_0/machine.config
$(symlinks):
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
+SUPPORT_FILES = $(symlinks) mono-wrapper wrapper-config
+
# The write check is to foil 'make distcheck'
-all-local: $(symlinks) mono-wrapper wrapper-config
+all-local: $(SUPPORT_FILES)
if test -w $(mcs_topdir); then :; else chmod -R +w $(mcs_topdir); fi
d=`pwd`; cd $(mcs_topdir) && $(MAKE) RUNTIME=$$d/mono-wrapper PROFILES='$(build_profiles)' all-profiles
@@ -32,7 +34,7 @@ endif
install: install-exec install-data
# override automake
-install-exec:
+install-exec: $(SUPPORT_FILES)
d=`pwd`; \
cd $(mcs_topdir) && $(MAKE) PROFILES='$(build_profiles)' \
RUNTIME=$$d/mono-wrapper RUNTIME_HAS_CONSISTENT_GACDIR=yes install-profiles