diff options
author | Nick Clifton <nickc@redhat.com> | 2002-05-07 17:22:14 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2002-05-07 17:22:14 +0000 |
commit | b5cc066812b6b16172c27456d6d5bc0a57e6830f (patch) | |
tree | 9d10a4ebdb171d17d4ef83f0c13836698481ca54 | |
parent | 795b46cf8fde240b486c27800a79d50fea9c8b7d (diff) | |
download | newlib-b5cc066812b6b16172c27456d6d5bc0a57e6830f.zip newlib-b5cc066812b6b16172c27456d6d5bc0a57e6830f.tar.gz newlib-b5cc066812b6b16172c27456d6d5bc0a57e6830f.tar.bz2 |
Honour DESTDIR
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | Makefile.in | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2002-05-07 Federico G. Schwindt <fgsch@olimpo.com.br> + + * Makefile.in: Honour DESTDIR. + 2002-05-05 Alexandre Oliva <aoliva@redhat.com> * configure.in (noconfigdirs): Don't disable libgcj on diff --git a/Makefile.in b/Makefile.in index 70bf102..12a69d3 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1826,8 +1826,8 @@ install-sid: install-tcl install-tk ### other supporting targets MAKEDIRS= \ - $(prefix) \ - $(exec_prefix) + $(DESTDIR)$(prefix) \ + $(DESTDIR)$(exec_prefix) .PHONY: installdirs installdirs: mkinstalldirs $(SHELL) $(srcdir)/mkinstalldirs $(MAKEDIRS) |