Skip to content

Commit

Permalink
waf: Correct installation path for Geany 1.25 (win32)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
kugel- committed Jul 5, 2015
1 parent 5a679c5 commit d96b6e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/wafutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d96b6e5

Please sign in to comment.