From c60c117714651b7c9cdcae126d7cd1cfd1a79cb9 Mon Sep 17 00:00:00 2001 From: Alexandre Duret-Lutz Date: Wed, 2 Dec 2015 14:26:21 +0100 Subject: [PATCH] python: do not use -no-undefined MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This was added by mistake in 86abd6c1 but that makes no sense, because the library depends on all the symbols in libpython. Reported by Étienne Renault. * wrap/python/Makefile.am: Here. --- wrap/python/Makefile.am | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/wrap/python/Makefile.am b/wrap/python/Makefile.am index 327c33b11..76675791a 100644 --- a/wrap/python/Makefile.am +++ b/wrap/python/Makefile.am @@ -36,7 +36,7 @@ MAINTAINERCLEANFILES = \ ## spot _spot_impl_la_SOURCES = $(srcdir)/spot_impl_wrap.cxx -_spot_impl_la_LDFLAGS = -avoid-version -module -no-undefined $(SYMBOLIC_LDFLAGS) +_spot_impl_la_LDFLAGS = -avoid-version -module $(SYMBOLIC_LDFLAGS) _spot_impl_la_LIBADD = $(top_builddir)/src/libspot.la $(srcdir)/spot_impl_wrap.cxx: $(srcdir)/spot_impl.i @@ -49,8 +49,7 @@ $(srcdir)/spot_impl.py: $(srcdir)/spot_impl.i ## buddy _buddy_la_SOURCES = $(srcdir)/buddy_wrap.cxx -_buddy_la_LDFLAGS = -avoid-version -module $(BUDDY_LDFLAGS) \ - -no-undefined $(SYMBOLIC_LDFLAGS) +_buddy_la_LDFLAGS = -avoid-version -module $(BUDDY_LDFLAGS) $(SYMBOLIC_LDFLAGS) $(srcdir)/buddy_wrap.cxx: $(srcdir)/buddy.i $(SWIG) -c++ -python $(BUDDY_CPPFLAGS) $(srcdir)/buddy.i