From: Marcio Barbosa Date: Thu, 9 Jun 2016 18:04:18 +0000 (-0300) Subject: build-sys: do not capitalize value of HAVE_PAM X-Git-Tag: upstream/1.8.0_pre1^2~69 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=8b57f9fc423c6a69a0fb8147d0621cb703e1374e;p=packages%2Fo%2Fopenafs.git 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 --- 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