apr/apr-1.7.2-libdir.patch

18 lines
616 B
Diff
Raw Normal View History

2023-02-03 02:36:28 +00:00
diff --git a/apr-config.in b/apr-config.in
index bed47ca..d4bf4d8 100644
--- a/apr-config.in
+++ b/apr-config.in
@@ -198,8 +198,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}"
2023-02-03 02:36:28 +00:00
elif test "$location" = "crosscompile"; then
flags="$flags -L$APR_TARGET_DIR/$libdir -l${APR_LIBNAME}"
else