From cce24c7b652496a1f86e450420a50c4b57d8d2a8 Mon Sep 17 00:00:00 2001 From: "Evgeny Grin (Karlson2k)" Date: Sat, 12 Jul 2025 20:24:48 +0200 Subject: [PATCH] configure: Fix outdated and non-portable 'test' syntax Signed-off-by: Evgeny Grin (Karlson2k) Reviewed-by: Alejandro Colomar --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 3984adf09..5ec9949b4 100644 --- a/configure.ac +++ b/configure.ac @@ -561,7 +561,7 @@ if test "$with_libpam" != "no"; then fi - if test "X$pam_lib$pam_headers_found" = "Xyesyes" -a "$pam_conv_function" != "no" ; then + if test "X$pam_lib$pam_headers_found" = "Xyesyes" && test "$pam_conv_function" != "no" ; then with_libpam="yes" else with_libpam="no" -- 2.47.2