diff options
author | Frederic Crozat <fcrozat@mandriva.com> | 2009-09-24 18:16:07 +0200 |
---|---|---|
committer | Daniel Veillard <veillard@redhat.com> | 2009-09-24 18:16:07 +0200 |
commit | a1981a0da0201b8da3713aafc1c0656be26e21f0 (patch) | |
tree | b559c8d7e85f7d1c9fa860f8930734110cb520ef /python | |
parent | 2818aec36119907206bab050811e4ec8347ffa40 (diff) | |
download | libxslt-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.am | 2 |
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 |