From 8b57f9fc423c6a69a0fb8147d0621cb703e1374e Mon Sep 17 00:00:00 2001 From: Marcio Barbosa Date: Thu, 9 Jun 2016 15:04:18 -0300 Subject: [PATCH] build-sys: do not capitalize value of HAVE_PAM The value assigned to HAVE_PAM should not be capitalized. If so, the PAM source files will not be compiled. To fix this problem, convert to lowercase one of the values assigned to HAVE_PAM. Change-Id: I4973394f8d398bbea0f578fadb04aedee6fd1fc0 Reviewed-on: https://gerrit.openafs.org/12296 Tested-by: BuildBot Reviewed-by: Benjamin Kaduk --- acinclude.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acinclude.m4 b/acinclude.m4 index cacec2e1b..829050ef2 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -1602,7 +1602,7 @@ if test "$enable_debug_locks" = yes; then fi if test "$ac_cv_header_security_pam_modules_h" = yes -a "$enable_pam" = yes; then - HAVE_PAM="YES" + HAVE_PAM="yes" else HAVE_PAM="no" fi -- 2.39.5