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 /Makefile.in | |
parent | 890d52e81ba256b45e856b423a90ade2e6f623e6 (diff) | |
download | gcc-b70b3534faa6a03b3e2d03d75ab26ab698aa3970.zip gcc-b70b3534faa6a03b3e2d03d75ab26ab698aa3970.tar.gz gcc-b70b3534faa6a03b3e2d03d75ab26ab698aa3970.tar.bz2 |
* Makefile.in: Honour DESTDIR.
From-SVN: r53340
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
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) |