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.
This commit is contained in:
Colomban Wendling 2015-03-11 02:39:45 +01:00
parent 7254bf9664
commit 07aeafab81

View File

@ -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 = \