diff options
author | dj <dj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-05-09 19:57:00 +0000 |
---|---|---|
committer | dj <dj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-05-09 19:57:00 +0000 |
commit | 7a94b1b99a26b8a5156a29dd0e729ba8b2b6004f (patch) | |
tree | e534f946e11306a01a5b3b59462d398ba0921f15 /Makefile.in | |
parent | 2e72479d2561c9610710fe759b33ad763a6d0376 (diff) | |
download | gcc-7a94b1b99a26b8a5156a29dd0e729ba8b2b6004f.tar.gz |
* Makefile.in: Honour DESTDIR.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@53340 138bc75d-0d04-0410-961f-82ee72b054a4
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 70bf102fcdb..12a69d3d3e6 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) |