diff options
author | Diego Elio Pettenò <[email protected]> | 2011-09-22 13:45:11 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2011-09-22 18:42:17 +0000 |
commit | eec4aff343af43b09b6e4f4ef786bd7f0511a42c (patch) | |
tree | 039c9c660b7a031f6b990ef7a3260a304abd4300 | |
parent | Add GPG_ERR_AMBIGUOUS (diff) | |
download | libgpg-error-eec4aff343af43b09b6e4f4ef786bd7f0511a42c.tar.gz libgpg-error-eec4aff343af43b09b6e4f4ef786bd7f0511a42c.zip |
gpg-error-config: handle /usr/lib64, /lib64 just like /usr/lib and /lib
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ò <[email protected]>
-rw-r--r-- | src/gpg-error-config.in | 9 |
1 files 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) |