summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorH.J. Lu <hjl@lucon.org>2003-01-02 20:51:02 +0000
committerH.J. Lu <hjl@lucon.org>2003-01-02 20:51:02 +0000
commit9adf3995a540598938092e09f51ff3ace7e09d83 (patch)
treec1feb680a3ac2078da8485c99b6d7cbced56435e /etc
parentee88d8723e7070407f209ec2d55fc6a4ba6f42a6 (diff)
downloadgdb-9adf3995a540598938092e09f51ff3ace7e09d83.tar.gz
2003-01-02 H.J. Lu <hjl@gnu.org>
* Makefile.in (DESTDIR): New. (install-info): Use it.
Diffstat (limited to 'etc')
-rw-r--r--etc/ChangeLog5
-rw-r--r--etc/Makefile.in8
2 files changed, 10 insertions, 3 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog
index debe735ca99..9a1a67d2015 100644
--- a/etc/ChangeLog
+++ b/etc/ChangeLog
@@ -1,3 +1,8 @@
+2003-01-02 H.J. Lu <hjl@gnu.org>
+
+ * Makefile.in (DESTDIR): New.
+ (install-info): Use it.
+
2002-06-11 Nick Clifton <nickc@cambridge.redhat.com>
Import the following patches from the FSF GCC sources:
diff --git a/etc/Makefile.in b/etc/Makefile.in
index 2bc34574540..63f7738c64a 100644
--- a/etc/Makefile.in
+++ b/etc/Makefile.in
@@ -2,6 +2,8 @@
# Makefile.in for etc
#
+DESTDIR =
+
prefix = @prefix@
exec_prefix = @exec_prefix@
@@ -68,17 +70,17 @@ info:
done
install-info: info
- $(SHELL) $(srcdir)/../mkinstalldirs $(infodir)
+ $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(infodir)
if test ! -f standards.info; then cd $(srcdir); fi; \
if test -f standards.info; then \
for i in standards.info*; do \
- $(INSTALL_DATA) $$i $(infodir)/$$i; \
+ $(INSTALL_DATA) $$i $(DESTDIR)$(infodir)/$$i; \
done; \
fi
if test ! -f configure.info; then cd $(srcdir); fi; \
if test -f configure.info; then \
for i in configure.info*; do \
- $(INSTALL_DATA) $$i $(infodir)/$$i; \
+ $(INSTALL_DATA) $$i $(DESTDIR)$(infodir)/$$i; \
done; \
fi