Branch: refs/heads/master
Author: Thomas Martitz <thomas.martitz(a)mailbox.org>
Committer: Thomas Martitz <thomas.martitz(a)mailbox.org>
Date: Sun, 05 Jul 2015 14:50:18 UTC
Commit: d96b6e51d0bc6f201921af8e4f24839c04d760e1
https://github.com/geany/geany-plugins/commit/d96b6e51d0bc6f201921af8e4f248…
Log Message:
-----------
waf: Correct installation path for Geany 1.25 (win32)
Geany 1.25 will expect plugins on win32 in the same dir as on Linux, i.e.
$prefix/lib/geany.
This change is not needed for autotools because it already used that dir,
and thus didn't work up to now.
Modified Paths:
--------------
build/wafutils.py
Modified: build/wafutils.py
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -122,7 +122,7 @@ def build_plugin(ctx, name, plugin_name=None, sources=None, includes=None, defin
defines = defines,
target = plugin_name,
use = libraries,
- install_path = '${G_PREFIX}/${LIBDIR}' if is_win32 else '${LIBDIR}/geany/')
+ install_path = '${G_PREFIX}/${LIBDIR}/geany/' if is_win32 else '${LIBDIR}/geany/')
install_docs(ctx, plugin_name, 'AUTHORS ChangeLog COPYING NEWS README THANKS TODO'.split())
return task
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).