[geany/geany] 07aeaf: autotools: Fix installation directory of plugins on Windows

Colomban Wendling git-noreply at xxxxx
Wed Mar 11 01:39:45 UTC 2015


Branch:      refs/heads/master
Author:      Colomban Wendling <ban at herbesfolles.org>
Committer:   Colomban Wendling <ban at herbesfolles.org>
Date:        Wed, 11 Mar 2015 01:39:45 UTC
Commit:      07aeafab81b00365406488b71f8b3a8cf9659048
             https://github.com/geany/geany/commit/07aeafab81b00365406488b71f8b3a8cf9659048

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).


More information about the Commits mailing list