Branch: refs/heads/master
Author: Colomban Wendling <ban(a)herbesfolles.org>
Committer: Colomban Wendling <ban(a)herbesfolles.org>
Date: Sun, 15 Mar 2015 14:38:47 UTC
Commit: 78a45805f1ce24b315ad1c99be4cc323d4c00959
https://github.com/geany/geany/commit/78a45805f1ce24b315ad1c99be4cc323d4c00…
Log Message:
-----------
autotools: Fix make dist after Scintilla makefile.win32 move
8ebac60901c239a7dc36461a077139595bed12b8 moved the makefile.win32,
so we need to use the new location.
Modified Paths:
--------------
scintilla/Makefile.am
Modified: scintilla/Makefile.am
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -148,4 +148,4 @@ marshallers: gtk/scintilla-marshal.list
glib-genmarshal --prefix scintilla_marshal gtk/scintilla-marshal.list --body > gtk/scintilla-marshal.c
EXTRA_DIST=gtk/scintilla-marshal.list License.txt README version.txt \
- makefile.win32
+ gtk/makefile.win32
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Colomban Wendling <ban(a)herbesfolles.org>
Committer: Colomban Wendling <ban(a)herbesfolles.org>
Date: Wed, 11 Mar 2015 01:39:45 UTC
Commit: 07aeafab81b00365406488b71f8b3a8cf9659048
https://github.com/geany/geany/commit/07aeafab81b00365406488b71f8b3a8cf9659…
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).