From: Evgeny Grin (Karlson2k) Date: Sat, 12 Jul 2025 18:24:48 +0000 (+0200) Subject: configure: Fix outdated and non-portable 'test' syntax X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=cce24c7b652496a1f86e450420a50c4b57d8d2a8;p=thirdparty%2Fshadow.git configure: Fix outdated and non-portable 'test' syntax Signed-off-by: Evgeny Grin (Karlson2k) Reviewed-by: Alejandro Colomar --- 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"