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/aspell | |
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/aspell')
-rw-r--r-- | src/plugins/aspell/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/aspell/Makefile.am b/src/plugins/aspell/Makefile.am index aa0068815..31dad05b4 100644 --- a/src/plugins/aspell/Makefile.am +++ b/src/plugins/aspell/Makefile.am @@ -38,7 +38,7 @@ aspell_la_SOURCES = weechat-aspell.c \ weechat-aspell-info.h \ weechat-aspell-speller.c \ weechat-aspell-speller.h -aspell_la_LDFLAGS = -module +aspell_la_LDFLAGS = -module -no-undefined aspell_la_LIBADD = $(ASPELL_LFLAGS) $(ENCHANT_LIBS) EXTRA_DIST = CMakeLists.txt |