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>2004-11-05 18:41:52 +0300
committerZoltan Varga <vargaz@gmail.com>2004-11-05 18:41:52 +0300
commita63efaa2c53a6ad381146652c87a6a796279fe80 (patch)
tree2bf9a660a72282b846846cb15b279b6c782c465f /runtime
parent63a9de9d4b6a3ff33f4ea79f3c4f8f1f2cc4d58b (diff)
2004-11-05 Zoltan Varga <vargaz@freemail.hu>
* runtime/net_2_0/Makefile.am (install-data-local): * runtime/net_1_1/Makefile.am (install-data-local): Applied patch from G�tz Waschk (waschk@informatik.uni-rostock.de). Make this work with DESTDIR. svn path=/trunk/mono/; revision=35699
Diffstat (limited to 'runtime')
-rw-r--r--runtime/net_1_1/Makefile.am4
-rw-r--r--runtime/net_2_0/Makefile.am4
2 files changed, 4 insertions, 4 deletions
diff --git a/runtime/net_1_1/Makefile.am b/runtime/net_1_1/Makefile.am
index 2850813499f..4bd0f9113de 100644
--- a/runtime/net_1_1/Makefile.am
+++ b/runtime/net_1_1/Makefile.am
@@ -93,8 +93,8 @@ all-local: $(gac_assemblies)
install-data-local:
@if test -f $(srcdir)/mscorlib.dll.mdb; then \
- echo $(INSTALL_DATA) $(srcdir)/mscorlib.dll.mdb $(corlibdir)/mscorlib.dll.mdb; \
- $(INSTALL_DATA) $(srcdir)/mscorlib.dll.mdb $(corlibdir)/mscorlib.dll.mdb; \
+ echo $(INSTALL_DATA) $(srcdir)/mscorlib.dll.mdb $(DESTDIR)$(corlibdir)/mscorlib.dll.mdb; \
+ $(INSTALL_DATA) $(srcdir)/mscorlib.dll.mdb $(DESTDIR)$(corlibdir)/mscorlib.dll.mdb; \
fi
@if test -n '$(gac_assemblies)'; then \
for i in ''$(gac_assemblies); do \
diff --git a/runtime/net_2_0/Makefile.am b/runtime/net_2_0/Makefile.am
index 1656b52a798..d2cd39cfcdd 100644
--- a/runtime/net_2_0/Makefile.am
+++ b/runtime/net_2_0/Makefile.am
@@ -92,8 +92,8 @@ all-local: $(gac_assemblies)
if INSTALL_2_0
install-data-local:
@if test -f $(srcdir)/mscorlib.dll.mdb; then \
- echo $(INSTALL_DATA) $(srcdir)/mscorlib.dll.mdb $(corlibdir)/mscorlib.dll.mdb; \
- $(INSTALL_DATA) $(srcdir)/mscorlib.dll.mdb $(corlibdir)/mscorlib.dll.mdb; \
+ echo $(INSTALL_DATA) $(srcdir)/mscorlib.dll.mdb $(DESTDIR)$(corlibdir)/mscorlib.dll.mdb; \
+ $(INSTALL_DATA) $(srcdir)/mscorlib.dll.mdb $(DESTDIR)$(corlibdir)/mscorlib.dll.mdb; \
fi
@if test -n '$(gac_assemblies)'; then \
for i in ''$(gac_assemblies); do \