[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r108313: * Makefile.in (install-etc):
From: |
Glenn Morris |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r108313: * Makefile.in (install-etc): Respect DESTDIR. |
Date: |
Sat, 19 May 2012 11:57:10 -0700 |
User-agent: |
Bazaar (2.3.1) |
------------------------------------------------------------
revno: 108313
fixes bug(s): http://debbugs.gnu.org/11518
author: Ulrich Mueller <address@hidden>
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Sat 2012-05-19 11:57:10 -0700
message:
* Makefile.in (install-etc): Respect DESTDIR.
modified:
ChangeLog
Makefile.in
=== modified file 'ChangeLog'
--- a/ChangeLog 2012-05-19 18:47:39 +0000
+++ b/ChangeLog 2012-05-19 18:57:10 +0000
@@ -1,3 +1,7 @@
+2012-05-19 Ulrich Mueller <address@hidden>
+
+ * Makefile.in (install-etc): Respect DESTDIR. (Bug#11518)
+
2012-05-19 Paul Eggert <address@hidden>
* configure.in (AC_CHECK_FUNCS): Remove XSetWMProtocols,
=== modified file 'Makefile.in'
--- a/Makefile.in 2012-05-19 18:47:39 +0000
+++ b/Makefile.in 2012-05-19 18:57:10 +0000
@@ -630,11 +630,11 @@
cd ${iconsrcdir} || exit 1; umask 022 ; \
for dir in */*/apps */*/mimetypes; do \
[ -d $${dir} ] || continue ; \
- ( cd $${thisdir}; ${MKDIR_P} ${icondir}/$${dir} ) ; \
+ ( cd $${thisdir}; ${MKDIR_P} $(DESTDIR)${icondir}/$${dir} ) ; \
for icon in $${dir}/*.*; do \
[ -r $${icon} ] || continue ; \
( cd $${thisdir}; \
- ${INSTALL_DATA} ${iconsrcdir}/$${icon} ${icondir}/$${icon} ) \
+ ${INSTALL_DATA} ${iconsrcdir}/$${icon}
$(DESTDIR)${icondir}/$${icon} ) \
|| exit 1; \
done ; \
done
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r108313: * Makefile.in (install-etc): Respect DESTDIR.,
Glenn Morris <=