Fix s/else if/elif/ typo

This commit is contained in:
Kurt Zeilenga 1999-10-05 15:29:54 +00:00
parent c0a6159844
commit 7f9a10d58a
2 changed files with 3 additions and 3 deletions

4
configure vendored
View file

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

View file

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