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 <buildbot@rampaginggeek.com>
Reviewed-by: Benjamin Kaduk <kaduk@mit.edu>
This commit is contained in:
Marcio Barbosa 2016-06-09 15:04:18 -03:00 committed by Benjamin Kaduk
parent a443accfdf
commit 8b57f9fc42

View File

@ -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