From 3d0204e7efce3ecaa2112b2c5aca0ab80691ab5a Mon Sep 17 00:00:00 2001 From: Omar Polo Date: Fri, 23 Jun 2023 22:38:10 +0000 Subject: [PATCH] don't quote $5 when calling pkg-config otherwise we fail the openssl test 'libcrypto libssl' --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 3d3f551..43153f4 100755 --- a/configure +++ b/configure @@ -204,8 +204,8 @@ runtest() { if [ -n "$5" -a -n "$pkgconfig" ]; then if $pkgconfig $5; then - cflags="$($pkgconfig --cflags "$5")" - ldflags="$($pkgconfig --libs "$5")" + cflags="$($pkgconfig --cflags $5)" + ldflags="$($pkgconfig --libs $5)" echo "retrying with pkg-config" >&3 if singletest "$1" "$2" "$cflags" "$ldflags"; then CFLAGS="$CFLAGS $cflags"