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/guile | |
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/guile')
-rw-r--r-- | src/plugins/guile/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/guile/Makefile.am b/src/plugins/guile/Makefile.am index 4e7e13b6f..7da0feae0 100644 --- a/src/plugins/guile/Makefile.am +++ b/src/plugins/guile/Makefile.am @@ -27,7 +27,7 @@ guile_la_SOURCES = weechat-guile.c \ weechat-guile.h \ weechat-guile-api.c \ weechat-guile-api.h -guile_la_LDFLAGS = -module +guile_la_LDFLAGS = -module -no-undefined guile_la_LIBADD = ../lib_weechat_plugins_scripts.la $(GUILE_LFLAGS) EXTRA_DIST = CMakeLists.txt |