From: Kurt Zeilenga Date: Thu, 4 Feb 1999 23:09:35 +0000 (+0000) Subject: Fix --disable-ldbm... missing CR-LF escape in argument verification. X-Git-Tag: OPENLDAP_SLAPD_BACK_LDAP~629 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=dec5c37de692de3b582de71d00f54e2ea5f6559e;p=openldap Fix --disable-ldbm... missing CR-LF escape in argument verification. --- diff --git a/configure b/configure index 83eb769687..8cf4d6ee31 100755 --- a/configure +++ b/configure @@ -1567,7 +1567,7 @@ elif test $ol_enable_ldbm = no ; then fi if test $ol_enable_passwd = no -a \ - $ol_enable_perl = no -a + $ol_enable_perl = no -a \ $ol_enable_shell = no ; then { echo "configure: error: slapd requires a backend" 1>&2; exit 1; } fi diff --git a/configure.in b/configure.in index d9e69cc52f..8f39b35cb8 100644 --- a/configure.in +++ b/configure.in @@ -179,7 +179,7 @@ elif test $ol_enable_ldbm = no ; then fi if test $ol_enable_passwd = no -a \ - $ol_enable_perl = no -a + $ol_enable_perl = no -a \ $ol_enable_shell = no ; then AC_MSG_ERROR([slapd requires a backend]) fi