- avoid adding %{_libdir} to --link-ld output --- a/apr-config.in +++ b/apr-config.in @@ -213,8 +213,10 @@ while test $# -gt 0; do ;; --link-ld) if test "$location" = "installed"; then - ### avoid using -L if libdir is a "standard" location like /usr/lib - flags="$flags -L$libdir -l${APR_LIBNAME}" + if test "$prefix" != "/usr"; then + flags="$flags -L$libdir" + fi + flags="$flags -l${APR_LIBNAME}" elif test "$location" = "crosscompile"; then flags="$flags -L$APR_TARGET_DIR/$libdir -l${APR_LIBNAME}" else -- apr-config.in | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-)