diff options
author | Christian Cornelssen <ccorn@cs.tu-berlin.de> | 2003-01-09 09:08:30 +0100 |
---|---|---|
committer | Andreas Jaeger <aj@gcc.gnu.org> | 2003-01-09 09:08:30 +0100 |
commit | 90e5b39f8eea82c980f33fe9be55f79a35a2b1b5 (patch) | |
tree | 7106bfd4173b8293f489f60e551c7adf31bf9590 /libiberty | |
parent | 8a4c5898ad3c0acfa144080dc1f5ac549c7f6bf8 (diff) | |
download | gcc-90e5b39f8eea82c980f33fe9be55f79a35a2b1b5.zip gcc-90e5b39f8eea82c980f33fe9be55f79a35a2b1b5.tar.gz gcc-90e5b39f8eea82c980f33fe9be55f79a35a2b1b5.tar.bz2 |
Makefile.in (FLAGS_TO_PASS): Also pass DESTDIR.
libf2c:
2003-01-09 Christian Cornelssen <ccorn@cs.tu-berlin.de>
* Makefile.in (FLAGS_TO_PASS): Also pass DESTDIR.
(install, uninstall): Prepend $(DESTDIR) to destination
paths in all (un)installation commands.
libiberty:
2003-01-09 Christian Cornelssen <ccorn@cs.tu-berlin.de>
* Makefile.in (FLAGS_TO_PASS): Also pass DESTDIR.
libobjc:
2003-01-09 Christian Cornelssen <ccorn@cs.tu-berlin.de>
* Makefile.in (FLAGS_TO_PASS): Also pass DESTDIR.
(install-libs, install-headers): Prepend $(DESTDIR) to
destination paths in all (un)installation commands.
libstdc++:
2003-01-09 Christian Cornelssen <ccorn@cs.tu-berlin.de>
* include/Makefile.am (install-data-local): Prepend
$(DESTDIR) to destination paths in all (un)installation
commands. Use ${c_base_builddir} and ${std_builddir}
as destination subdirectories to achieve consistency with
preceding mkinstalldirs commands. No effect because both
variables contain "." only.
* include/Makefile.in: Regenerate.
From-SVN: r61082
Diffstat (limited to 'libiberty')
-rw-r--r-- | libiberty/ChangeLog | 4 | ||||
-rw-r--r-- | libiberty/Makefile.in | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index 7280aa0..8a756b0 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,7 @@ +2003-01-09 Christian Cornelssen <ccorn@cs.tu-berlin.de> + + * Makefile.in (FLAGS_TO_PASS): Also pass DESTDIR. + 2002-12-04 Danny Smith <dannysmith@users.sourceforge.net> * make-relative-prefix.c (HAVE_HOST_EXECUTABLE_SUFFIX): diff --git a/libiberty/Makefile.in b/libiberty/Makefile.in index cdf14a4..9e913ee 100644 --- a/libiberty/Makefile.in +++ b/libiberty/Makefile.in @@ -84,6 +84,7 @@ FLAGS_TO_PASS = \ "AR_FLAGS=$(AR_FLAGS)" \ "CC=$(CC)" \ "CFLAGS=$(CFLAGS)" \ + "DESTDIR=$(DESTDIR)" \ "LIBCFLAGS=$(LIBCFLAGS)" \ "EXTRA_OFILES=$(EXTRA_OFILES)" \ "HDEFINES=$(HDEFINES)" \ |