Commit 86e3c83a by Matthias Klose Committed by Matthias Klose

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
parent 0a7d7dea
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> 2009-06-22 Steven Bosscher <steven@gcc.gnu.org>
PR objc/28050 PR objc/28050
...@@ -101,7 +105,6 @@ ...@@ -101,7 +105,6 @@
* var-tracking.c: Ditto. * var-tracking.c: Ditto.
* vmsdbgout.c: Ditto. * vmsdbgout.c: Ditto.
>>>>>>> .r148803
2009-06-22 Matthias Klose <doko@ubuntu.com> 2009-06-22 Matthias Klose <doko@ubuntu.com>
* Makefile.in (install-plugin): Always use DESTDIR. * Makefile.in (install-plugin): Always use DESTDIR.
......
...@@ -4064,10 +4064,10 @@ install-plugin: installdirs ...@@ -4064,10 +4064,10 @@ install-plugin: installdirs
*) base=`basename $$path` ;; \ *) base=`basename $$path` ;; \
esac; \ esac; \
dest=$(plugin_includedir)/$$base; \ dest=$(plugin_includedir)/$$base; \
echo $(INSTALL_DATA) $$path $(DESTDIR)/$$dest; \ echo $(INSTALL_DATA) $$path $(DESTDIR)$$dest; \
dir=`dirname $$dest`; \ dir=`dirname $$dest`; \
$(mkinstalldirs) $(DESTDIR)/$$dir; \ $(mkinstalldirs) $(DESTDIR)$$dir; \
$(INSTALL_DATA) $$path $(DESTDIR)/$$dest; \ $(INSTALL_DATA) $$path $(DESTDIR)$$dest; \
done done
# Install the compiler executables built during cross compilation. # Install the compiler executables built during cross compilation.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment