diff options
author | Matthias Klose <doko@ubuntu.com> | 2009-06-22 09:21:56 +0000 |
---|---|---|
committer | Matthias Klose <doko@gcc.gnu.org> | 2009-06-22 09:21:56 +0000 |
commit | 1407d6cf64c9a65749fae7ba43a1840ef727c0b7 (patch) | |
tree | 8746d984e72932b433381e18b69c821ee593eec6 /gcc | |
parent | e7d72fb99dbc80790185d67baed6a0ca7e8bbda8 (diff) | |
download | gcc-1407d6cf64c9a65749fae7ba43a1840ef727c0b7.zip gcc-1407d6cf64c9a65749fae7ba43a1840ef727c0b7.tar.gz gcc-1407d6cf64c9a65749fae7ba43a1840ef727c0b7.tar.bz2 |
Makefile.in (install-plugin): Always use DESTDIR.
2009-06-22 Matthias Klose <doko@ubuntu.com>
* Makefile.in (install-plugin): Always use DESTDIR.
From-SVN: r148783
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/Makefile.in | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8d17170..4bc076f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2009-06-22 Matthias Klose <doko@ubuntu.com> + + * Makefile.in (install-plugin): Always use DESTDIR. + 2009-06-22 Olivier Hainque <hainque@adacore.com> * config/pa/pa.c (output_call): Don't optimize post call jumps diff --git a/gcc/Makefile.in b/gcc/Makefile.in index e58f066..826b080 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -4066,7 +4066,7 @@ install-plugin: installdirs dest=$(plugin_includedir)/$$base; \ echo $(INSTALL_DATA) $$path $(DESTDIR)/$$dest; \ dir=`dirname $$dest`; \ - $(mkinstalldirs) $$dir; \ + $(mkinstalldirs) $(DESTDIR)/$$dir; \ $(INSTALL_DATA) $$path $(DESTDIR)/$$dest; \ done |