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--ChangeLog4
-rw-r--r--runtime/Makefile.am4
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index bcc9a915b23..0053f166161 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2005-05-04 Zoltan Varga <vargaz@freemail.hu>
+
+ * runtime/Makefile.am: Pass the prefix to the mcs makefiles.
+
2005-04-28 James Willcox <james@ximian.com>
* man/mkbundle.1: add --config-dir flag
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