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:
authorZoltan Varga <vargaz@gmail.com>2005-05-04 18:08:29 +0400
committerZoltan Varga <vargaz@gmail.com>2005-05-04 18:08:29 +0400
commit5f6dd3feab7a46683facb685b7871dfc2e70dfa9 (patch)
treebd3f1efa84603e566d1d8fc8aee5f81ff58b5fe3 /runtime
parentb93484ca6b0f32663680a9abf616f24b140de755 (diff)
2005-05-04 Zoltan Varga <vargaz@freemail.hu>
* runtime/Makefile.am: Pass the prefix to the mcs makefiles. svn path=/trunk/mono/; revision=44027
Diffstat (limited to 'runtime')
-rw-r--r--runtime/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/Makefile.am b/runtime/Makefile.am
index fdc9ff98f2f..adb7c3ba3e3 100644
--- a/runtime/Makefile.am
+++ b/runtime/Makefile.am
@@ -36,7 +36,7 @@ install: install-exec install-data
# override automake
install-exec: $(SUPPORT_FILES)
d=`pwd`; \
- cd $(mcs_topdir) && $(MAKE) PROFILES='$(build_profiles)' RUNTIME_HAS_CONSISTENT_GACDIR=yes install-profiles
+ cd $(mcs_topdir) && $(MAKE) PROFILES='$(build_profiles)' RUNTIME_HAS_CONSISTENT_GACDIR=yes prefix=$(prefix) install-profiles
# override automake
install-data:
@@ -45,7 +45,7 @@ install-data:
# override automake
uninstall:
d=`pwd`; \
- cd $(mcs_topdir) && $(MAKE) PROFILES='$(build_profiles)' RUNTIME_HAS_CONSISTENT_GACDIR=yes uninstall-profiles
+ cd $(mcs_topdir) && $(MAKE) PROFILES='$(build_profiles)' RUNTIME_HAS_CONSISTENT_GACDIR=yes prefix=$(prefix) uninstall-profiles
clean-local:
d=`pwd`; cd $(mcs_topdir) && $(MAKE) PROFILES='$(build_profiles)' clean-profiles