diff options
author | H.J. Lu <hjl@lucon.org> | 2003-01-02 20:51:02 +0000 |
---|---|---|
committer | H.J. Lu <hjl@lucon.org> | 2003-01-02 20:51:02 +0000 |
commit | cffbb496dabcc827b0d88750c7778b423a2e728d (patch) | |
tree | 1afd8ba20cb239ae7af01ca2dad636c64e509ac4 /etc | |
parent | 52bd881a4a503ed1abf76f0e044eb35dc4f7445a (diff) | |
download | binutils-redhat-cffbb496dabcc827b0d88750c7778b423a2e728d.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/ChangeLog | 5 | ||||
-rw-r--r-- | etc/Makefile.in | 8 |
2 files changed, 10 insertions, 3 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog index debe735ca9..9a1a67d201 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 2bc3457454..63f7738c64 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 |