From 8df7e0bdbab86344e85827c41e5e100043e0f77f Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 10 Jan 2008 22:14:02 +0000 Subject: Michal Marek made curl-config --libs not include /usr/lib64 in the output (it already before skipped /usr/lib). /usr/lib64 is the default library directory on many 64bit systems and it's unlikely that anyone would use the path privately on systems where it's not. --- curl-config.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'curl-config.in') diff --git a/curl-config.in b/curl-config.in index ce98bdee3..107fa2c59 100644 --- a/curl-config.in +++ b/curl-config.in @@ -6,7 +6,7 @@ # | (__| |_| | _ <| |___ # \___|\___/|_| \_\_____| # -# Copyright (C) 2001 - 2007, Daniel Stenberg, , et al. +# Copyright (C) 2001 - 2008, Daniel Stenberg, , et al. # # This software is licensed as described in the file COPYING, which # you should have received as part of this distribution. The terms @@ -189,7 +189,7 @@ while test $# -gt 0; do ;; --libs) - if test "X@libdir@" != "X/usr/lib"; then + if test "X@libdir@" != "X/usr/lib" -a "X@libdir@" != "X/usr/lib64"; then CURLLIBDIR="-L@libdir@ " else CURLLIBDIR="" -- cgit v1.2.1