aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFederico G. Schwindt <fgsch@olimpo.com.br>2002-05-09 19:57:00 +0000
committerDJ Delorie <dj@gcc.gnu.org>2002-05-09 15:57:00 -0400
commitb70b3534faa6a03b3e2d03d75ab26ab698aa3970 (patch)
treee534f946e11306a01a5b3b59462d398ba0921f15
parent890d52e81ba256b45e856b423a90ade2e6f623e6 (diff)
downloadgcc-b70b3534faa6a03b3e2d03d75ab26ab698aa3970.zip
gcc-b70b3534faa6a03b3e2d03d75ab26ab698aa3970.tar.gz
gcc-b70b3534faa6a03b3e2d03d75ab26ab698aa3970.tar.bz2
* Makefile.in: Honour DESTDIR.
From-SVN: r53340
-rw-r--r--ChangeLog4
-rw-r--r--Makefile.in4
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 5521af5..3c19c99 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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)