mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-21 14:25:24 -05:00
Fix s/else if/elif/ typo
This commit is contained in:
parent
c0a6159844
commit
7f9a10d58a
2 changed files with 3 additions and 3 deletions
4
configure
vendored
4
configure
vendored
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# $OpenLDAP$
|
||||
# from OpenLDAP: pkg/ldap/configure.in,v 1.263 1999/09/28 22:56:43 bcollins Exp
|
||||
# from OpenLDAP: pkg/ldap/configure.in,v 1.264 1999/10/01 03:11:40 kdz Exp
|
||||
|
||||
# Copyright 1998,1999 The OpenLDAP Foundation. All Rights Reserved.
|
||||
#
|
||||
|
|
@ -5849,7 +5849,7 @@ if test $ol_link_kerberos = yes ; then
|
|||
EOF
|
||||
|
||||
|
||||
else if test $ol_with_kerberos != auto -a $ol_with_kerberos != no ; then
|
||||
elif test $ol_with_kerberos != auto -a $ol_with_kerberos != no ; then
|
||||
{ echo "configure: error: Kerberos detection failed." 1>&2; exit 1; }
|
||||
fi
|
||||
|
||||
|
|
|
|||
|
|
@ -856,7 +856,7 @@ fi
|
|||
if test $ol_link_kerberos = yes ; then
|
||||
AC_DEFINE(HAVE_KERBEROS, 1, [define if you have Kerberos])
|
||||
|
||||
else if test $ol_with_kerberos != auto -a $ol_with_kerberos != no ; then
|
||||
elif test $ol_with_kerberos != auto -a $ol_with_kerberos != no ; then
|
||||
AC_ERROR([Kerberos detection failed.])
|
||||
fi
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue