diff options
| author | Federico G. Schwindt <fgsch@olimpo.com.br> | 2002-05-09 19:57:00 +0000 |
|---|---|---|
| committer | DJ Delorie <dj@gcc.gnu.org> | 2002-05-09 15:57:00 -0400 |
| commit | b70b3534faa6a03b3e2d03d75ab26ab698aa3970 (patch) | |
| tree | e534f946e11306a01a5b3b59462d398ba0921f15 | |
| parent | 890d52e81ba256b45e856b423a90ade2e6f623e6 (diff) | |
| download | gcc-b70b3534faa6a03b3e2d03d75ab26ab698aa3970.zip gcc-b70b3534faa6a03b3e2d03d75ab26ab698aa3970.tar.gz gcc-b70b3534faa6a03b3e2d03d75ab26ab698aa3970.tar.bz2 | |
* Makefile.in: Honour DESTDIR.
From-SVN: r53340
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | Makefile.in | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2002-05-09 Federico G. Schwindt <fgsch@olimpo.com.br> + + * Makefile.in: Honour DESTDIR. + 2002-05-08 Mark Mitchell <mark@codesourcery.com> * config.guess: Import 2002-03-20 version. 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) |
