Makefile.in (install-plugin): Remove extra `/' after $(DESTDIR).

2009-06-22  Matthias Klose  <doko@ubuntu.com>

	* Makefile.in (install-plugin): Remove extra `/' after $(DESTDIR).

From-SVN: r148806
This commit is contained in:
Matthias Klose 2009-06-22 15:20:34 +00:00 committed by Matthias Klose
parent 0a7d7dea56
commit 86e3c83a1c
2 changed files with 7 additions and 4 deletions

View file

@ -1,3 +1,7 @@
2009-06-22 Matthias Klose <doko@ubuntu.com>
* Makefile.in (install-plugin): Remove extra `/' after $(DESTDIR).
2009-06-22 Steven Bosscher <steven@gcc.gnu.org>
PR objc/28050
@ -101,7 +105,6 @@
* var-tracking.c: Ditto.
* vmsdbgout.c: Ditto.
>>>>>>> .r148803
2009-06-22 Matthias Klose <doko@ubuntu.com>
* Makefile.in (install-plugin): Always use DESTDIR.

View file

@ -4064,10 +4064,10 @@ install-plugin: installdirs
*) base=`basename $$path` ;; \
esac; \
dest=$(plugin_includedir)/$$base; \
echo $(INSTALL_DATA) $$path $(DESTDIR)/$$dest; \
echo $(INSTALL_DATA) $$path $(DESTDIR)$$dest; \
dir=`dirname $$dest`; \
$(mkinstalldirs) $(DESTDIR)/$$dir; \
$(INSTALL_DATA) $$path $(DESTDIR)/$$dest; \
$(mkinstalldirs) $(DESTDIR)$$dir; \
$(INSTALL_DATA) $$path $(DESTDIR)$$dest; \
done
# Install the compiler executables built during cross compilation.