Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2003-01-02 23:51:02 +0300
committerH.J. Lu <hjl.tools@gmail.com>2003-01-02 23:51:02 +0300
commit6283f02c2574a0183da6f62c5884958d88e946bf (patch)
treecde07c90eef324f4e4a80eafe98d3821b1d8b6aa /etc
parent4aa028aae0da5b25526825a7a6d14e982c0006a7 (diff)
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 debe735ca..9a1a67d20 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 2bc345745..63f7738c6 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