commit 3d0204e7efce3ecaa2112b2c5aca0ab80691ab5a from: Omar Polo date: Fri Jun 23 22:38:10 2023 UTC don't quote $5 when calling pkg-config otherwise we fail the openssl test 'libcrypto libssl' commit - 5a345722826201a4da926abc096aed76de3cdaa4 commit + 3d0204e7efce3ecaa2112b2c5aca0ab80691ab5a blob - 3d3f551602ecc946b6a83d2e1bc6ae6322faf6f0 blob + 43153f498e79f69f015c0cb7e58c4c74ca1dd59e --- configure +++ 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"