Просмотр исходного кода

2005-05-04 Zoltan Varga <[email protected]>

	* runtime/Makefile.am: Pass the prefix to the mcs makefiles.

svn path=/trunk/mono/; revision=44027
Zoltan Varga 20 лет назад
Родитель
Сommit
5f6dd3feab
2 измененных файлов с 6 добавлено и 2 удалено
  1. 4 0
      ChangeLog
  2. 2 2
      runtime/Makefile.am

+ 4 - 0
ChangeLog

@@ -1,3 +1,7 @@
+2005-05-04  Zoltan Varga  <[email protected]>
+
+	* runtime/Makefile.am: Pass the prefix to the mcs makefiles.
+
 2005-04-28  James Willcox  <[email protected]>
 
 	* man/mkbundle.1: add --config-dir flag

+ 2 - 2
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