Skip to content

Commit

Permalink
Merge pull request #267 from kugel-/build-fixes
Browse files Browse the repository at this point in the history
Windows build fixes
  • Loading branch information
b4n committed Jul 7, 2015
2 parents 4f02cea + d96b6e5 commit 77722e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/vars.build.mk
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ AM_CFLAGS = \
$(GEANY_CFLAGS) \
$(GP_CFLAGS)

AM_LDFLAGS = -module -avoid-version $(GP_LDFLAGS)
AM_LDFLAGS = -module -avoid-version -no-undefined $(GP_LDFLAGS)

COMMONLIBS = \
$(GEANY_LIBS) \
Expand Down
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 77722e9

Please sign in to comment.