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:
parent
7254bf9664
commit
07aeafab81
@ -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 = \
|
||||
|
Loading…
x
Reference in New Issue
Block a user