From eec4aff343af43b09b6e4f4ef786bd7f0511a42c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20Elio=20Petten=C3=B2?= Date: Thu, 22 Sep 2011 15:45:11 +0200 Subject: gpg-error-config: handle /usr/lib64, /lib64 just like /usr/lib and /lib MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Distributions such as Gentoo Linux use /usr/lib64 for system libraries on multilib setups, so in those cases, ignore the libraries as well. Signed-off-by: Diego Elio Pettenò --- src/gpg-error-config.in | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/gpg-error-config.in b/src/gpg-error-config.in index 14f0625..df27f0a 100644 --- a/src/gpg-error-config.in +++ b/src/gpg-error-config.in @@ -69,9 +69,12 @@ while test $# -gt 0; do output="$output @GPG_ERROR_CONFIG_CFLAGS@" ;; --libs) - if test "x$libdir" != "x/usr/lib" -a "x$libdir" != "x/lib"; then - output="$output -L$libdir" - fi + case "$libdir" in + /usr/lib|/usr/lib64|/lib|/lib64) ;; + *) + output="$output -L$libdir" + ;; + esac output="$output @GPG_ERROR_CONFIG_LIBS@" ;; --host) -- cgit v1.2.3