summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorFrederic Crozat <fcrozat@mandriva.com>2009-09-24 18:16:07 +0200
committerDaniel Veillard <veillard@redhat.com>2009-09-24 18:16:07 +0200
commita1981a0da0201b8da3713aafc1c0656be26e21f0 (patch)
treeb559c8d7e85f7d1c9fa860f8930734110cb520ef /python
parent2818aec36119907206bab050811e4ec8347ffa40 (diff)
downloadlibxslt-a1981a0da0201b8da3713aafc1c0656be26e21f0.tar.gz
libxslt-a1981a0da0201b8da3713aafc1c0656be26e21f0.tar.bz2
libxslt-a1981a0da0201b8da3713aafc1c0656be26e21f0.zip
link python module with python library
libxslt python module wasn't linked with python library * configure.in python/Makefile.am: detect and add appropriate linking flags
Diffstat (limited to 'python')
-rw-r--r--python/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/Makefile.am b/python/Makefile.am
index 9591c111..fd3ef283 100644
--- a/python/Makefile.am
+++ b/python/Makefile.am
@@ -36,7 +36,7 @@ all-local: libxslt.py
python_LTLIBRARIES = libxsltmod.la
libxsltmod_la_SOURCES = libxslt.c types.c libxslt-py.c
-libxsltmod_la_LIBADD = $(mylibs)
+libxsltmod_la_LIBADD = $(mylibs) @PYTHON_LIBS@
libxslt.py: $(srcdir)/libxsl.py $(srcdir)/libxsltclass.py
cat $(srcdir)/libxsl.py $(srcdir)/libxsltclass.py > libxslt.py