summaryrefslogtreecommitdiff
path: root/xml2-config.in
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2003-04-30 12:20:34 +0000
committerDaniel Veillard <veillard@src.gnome.org>2003-04-30 12:20:34 +0000
commit61c5220296ccb727d44baf6c9d048c97a5c08c67 (patch)
treeebc2b8971070d8750bfb97985070964bcea5007a /xml2-config.in
parent93d95255e58d727fb69683646ec085d424bc34e7 (diff)
downloadlibxml2-61c5220296ccb727d44baf6c9d048c97a5c08c67.tar.gz
try to fix Red hat bug #89957, do not output -L/usr/lib64 fixed a typo in
* xml2-config.in: try to fix Red hat bug #89957, do not output -L/usr/lib64 * xmlreader.c: fixed a typo in a comment Daniel
Diffstat (limited to 'xml2-config.in')
-rw-r--r--xml2-config.in12
1 files changed, 11 insertions, 1 deletions
diff --git a/xml2-config.in b/xml2-config.in
index da31e7f1..72821869 100644
--- a/xml2-config.in
+++ b/xml2-config.in
@@ -60,7 +60,17 @@ while test $# -gt 0; do
;;
--libs)
- echo @XML_LIBDIR@ @XML_LIBS@
+ if [ "`uname`" = "Linux" ]
+ then
+ if [ "@XML_LIBDIR@" = "-L/usr/lib64" ]
+ then
+ echo @XML_LIBS@
+ else
+ echo @XML_LIBDIR@ @XML_LIBS@
+ fi
+ else
+ echo @XML_LIBDIR@ @XML_LIBS@
+ fi
;;
*)