diff options
-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) |