From: Samuel Thibault Date: Sat, 7 Jun 2025 16:06:21 +0000 (+0200) Subject: configure: Fix typo X-Git-Tag: 4.18.0-rc1~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ec88c2ccb8cc7b70bef842919d079ac03ab4c2e0;p=thirdparty%2Fshadow.git configure: Fix typo The test was about lastlog, not subids Fixes: 1bdcfa8d3710 (2023-07-15; "lastlog: stop building by default") --- diff --git a/configure.ac b/configure.ac index 186c1ea9a..964e2fe2e 100644 --- a/configure.ac +++ b/configure.ac @@ -330,7 +330,7 @@ if test "$enable_lastlog" = "yes" && test "$ac_cv_header_lastlog_h" = "yes"; the enable_lastlog="yes" else AC_MSG_ERROR([Cannot enable support for lastlog on systems where the data structures aren't available]) - enable_subids="no" + enable_lastlog="no" fi fi AM_CONDITIONAL(ENABLE_LASTLOG, test "x$enable_lastlog" != "xno")