[libxml2] Fix a linking error for python bindings



commit c0a8dd14f81198947121bb64877f1e6c021bad84
Author: Daniel Veillard <veillard redhat com>
Date:   Fri Apr 19 15:02:33 2013 +0800

    Fix a linking error for python bindings
    
    Showing up apparently in Debian BTS distro
    https://bugzilla.gnome.org/show_bug.cgi?id=685515

 python/Makefile.am | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/python/Makefile.am b/python/Makefile.am
index fdb00cd..34aed96 100644
--- a/python/Makefile.am
+++ b/python/Makefile.am
@@ -24,8 +24,8 @@ AM_CPPFLAGS = \
 python_LTLIBRARIES = libxml2mod.la
 
 libxml2mod_la_SOURCES = libxml.c libxml_wrap.h libxml2-py.h libxml2-py.c types.c
-libxml2mod_la_LIBADD  = $(top_builddir)/libxml2.la $(CYGWIN_EXTRA_PYTHON_LIBADD) 
$(WIN32_EXTRA_PYTHON_LIBADD) $(PYTHON_LIBS)
-libxml2mod_la_LDFLAGS = $(CYGWIN_EXTRA_LDFLAGS) $(WIN32_EXTRA_LDFLAGS) -module -avoid-version
+libxml2mod_la_LDFLAGS = $(CYGWIN_EXTRA_LDFLAGS) $(WIN32_EXTRA_LDFLAGS) -module -avoid-version \
+        $(top_builddir)/libxml2.la $(CYGWIN_EXTRA_PYTHON_LIBADD) $(WIN32_EXTRA_PYTHON_LIBADD) $(PYTHON_LIBS)
 
 BUILT_SOURCES = libxml2-export.c libxml2-py.h libxml2-py.c
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]