Branch: refs/heads/master Author: Colomban Wendling ban@herbesfolles.org Committer: Colomban Wendling ban@herbesfolles.org Date: Wed, 11 Mar 2015 01:39:45 UTC Commit: 07aeafab81b00365406488b71f8b3a8cf9659048 https://github.com/geany/geany/commit/07aeafab81b00365406488b71f8b3a8cf96590...
Log Message: ----------- autotools: Fix installation directory of plugins on Windows
For some reason we expect the plugins directly inside `$(libdir)` on Windows instead of `$(libdir)/geany`, so install the plugins there on Windows.
Modified Paths: -------------- plugins/Makefile.am
Modified: plugins/Makefile.am 4 lines changed, 4 insertions(+), 0 deletions(-) =================================================================== @@ -4,7 +4,11 @@ EXTRA_DIST = \ makefile.win32 \ genapi.py
+if MINGW +plugindir = $(libdir) +else plugindir = $(libdir)/geany +endif
plugins_includedir = $(includedir)/geany plugins_include_HEADERS = \
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).