diff options
author | Anas Nashif <anas.nashif@intel.com> | 2012-11-08 12:01:44 -0800 |
---|---|---|
committer | Kévin THIERRY <kevin.thierry@open.eurogiciel.org> | 2014-11-12 14:09:22 +0100 |
commit | 6efe4e6a473198ea858d810287d0e801341b3406 (patch) | |
tree | bd7a48ffae004c1294cd5781fd6eaf89e05c76d6 | |
parent | d0a5942270a6dc78780ce49d4ff045fd0b375738 (diff) | |
download | libxslt-6efe4e6a473198ea858d810287d0e801341b3406.tar.gz libxslt-6efe4e6a473198ea858d810287d0e801341b3406.tar.bz2 libxslt-6efe4e6a473198ea858d810287d0e801341b3406.zip |
config fixes
-rw-r--r-- | xslt-config.in | 2 | ||||
-rw-r--r-- | xsltConf.sh.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/xslt-config.in b/xslt-config.in index 45c3e28f..93351e84 100644 --- a/xslt-config.in +++ b/xslt-config.in @@ -89,7 +89,7 @@ while test $# -gt 0; do shift done -the_libs="@XSLT_LIBDIR@ @XSLT_LIBS@ @EXTRA_LIBS@" +the_libs="-lxslt" if test "$includedir" != "/usr/include"; then the_flags="$the_flags -I$includedir `@XML_CONFIG@ --cflags`" else diff --git a/xsltConf.sh.in b/xsltConf.sh.in index 666774b6..43ae001f 100644 --- a/xsltConf.sh.in +++ b/xsltConf.sh.in @@ -2,6 +2,6 @@ # Configuration file for using the xslt library # XSLT_LIBDIR="@XSLT_LIBDIR@" -XSLT_LIBS="@XSLT_LIBS@" +XSLT_LIBS="-lxslt" XSLT_INCLUDEDIR="@XSLT_INCLUDEDIR@" MODULE_VERSION="xslt-@VERSION@" |