diff options
author | William M. Brack <wbrack@src.gnome.org> | 2004-07-04 15:21:35 +0000 |
---|---|---|
committer | William M. Brack <wbrack@src.gnome.org> | 2004-07-04 15:21:35 +0000 |
commit | f59c49fd3c855590d8731b43364c1cdeaf48b85d (patch) | |
tree | d43a1e6db1a615ed9a7a5f85734e07701fb08ef3 /xsltproc | |
parent | c0fd6967d8c791a1a5f937a680ad637264b496c7 (diff) | |
download | libxslt-f59c49fd3c855590d8731b43364c1cdeaf48b85d.tar.gz libxslt-f59c49fd3c855590d8731b43364c1cdeaf48b85d.tar.bz2 libxslt-f59c49fd3c855590d8731b43364c1cdeaf48b85d.zip |
changed the sequence of LD_ADDS and LIBGCRYPT_LIBS on xsltproc_LDADD.
* xsltproc/Makefile.am: changed the sequence of LD_ADDS and
LIBGCRYPT_LIBS on xsltproc_LDADD. Previously this was
causing the wrong libs to be linked when using the configure
option --with-libxml-libs-prefix, or --with-libxml-src (nasty)
Diffstat (limited to 'xsltproc')
-rw-r--r-- | xsltproc/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xsltproc/Makefile.am b/xsltproc/Makefile.am index 44210c89..ed78f2c6 100644 --- a/xsltproc/Makefile.am +++ b/xsltproc/Makefile.am @@ -10,7 +10,6 @@ AM_CFLAGS = $(LIBGCRYPT_CFLAGS) xsltproc_SOURCES = xsltproc.c xsltproc_LDFLAGS = xsltproc_DEPENDENCIES = $(DEPS) -xsltproc_LDADD = $(LDADDS) $(LIBGCRYPT_LIBS) DEPS = $(top_builddir)/libxslt/libxslt.la \ $(top_builddir)/libexslt/libexslt.la @@ -20,6 +19,8 @@ LDADDS = @STATIC_BINARIES@ \ $(top_builddir)/libexslt/libexslt.la \ @LIBXML_LIBS@ $(EXTRA_LIBS) @WIN32_EXTRA_LIBADD@ +xsltproc_LDADD = $(LIBGCRYPT_LIBS) $(LDADDS) + xsltproc.dv: xsltproc.o $(CC) $(CFLAGS) -o xsltproc xsltproc.o ../libexslt/.libs/libexslt.a ../libxslt/.libs/libxslt.a @LIBXML_LIBS@ $(EXTRA_LIBS) |