build-sys: do not capitalize value of HAVE_PAM 96/12296/4
authorMarcio Barbosa <mbarbosa@sinenomine.net>
Thu, 9 Jun 2016 18:04:18 +0000 (15:04 -0300)
committerBenjamin Kaduk <kaduk@mit.edu>
Wed, 6 Jul 2016 16:30:37 +0000 (12:30 -0400)
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>

acinclude.m4

index cacec2e..829050e 100644 (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