diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2013-10-05 20:17:18 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2013-10-05 20:17:18 +0200 |
commit | b5f6874f2c1f02d042ad8abd9bafb1c8c7152efa (patch) | |
tree | 3a4b6a80cd9745721566475830fe6dc475783c93 /src/plugins/lua | |
parent | a6c188ce4fb42a12eef068bdcc8e9f7b270c5da8 (diff) | |
download | weechat-b5f6874f2c1f02d042ad8abd9bafb1c8c7152efa.zip |
core: move the "-no-undefined" from LDFLAGS in configure.ac to Makefile.am in plugins
This "-no-undefined" was causing an error when detecting "ld" lib on Cygwin.
Diffstat (limited to 'src/plugins/lua')
-rw-r--r-- | src/plugins/lua/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/lua/Makefile.am b/src/plugins/lua/Makefile.am index ca4faff8d..5db474c0e 100644 --- a/src/plugins/lua/Makefile.am +++ b/src/plugins/lua/Makefile.am @@ -28,7 +28,7 @@ lua_la_SOURCES = weechat-lua.c \ weechat-lua.h \ weechat-lua-api.c \ weechat-lua-api.h -lua_la_LDFLAGS = -module +lua_la_LDFLAGS = -module -no-undefined lua_la_LIBADD = ../lib_weechat_plugins_scripts.la $(LUA_LFLAGS) EXTRA_DIST = CMakeLists.txt |