From: Kurt Zeilenga Date: Fri, 18 Oct 2002 21:09:46 +0000 (+0000) Subject: Fix stupid bug X-Git-Tag: NO_SLAP_OP_BLOCKS~875 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=475515ef78e1f354da0ab4d8e77eb2f0c9afd749;p=openldap Fix stupid bug --- diff --git a/configure b/configure index d073e911bb..ac589eeaa3 100755 --- a/configure +++ b/configure @@ -22588,7 +22588,7 @@ EOF fi if test "$ol_enable_shell" != no ; then - if( "$ol_link_thread" != no ; then + if test "$ol_link_thread" != no ; then echo "configure: warning: Use of --without-threads is recommended with back-shell" 1>&2 fi cat >> confdefs.h <<\EOF diff --git a/configure.in b/configure.in index 445048f684..c1fc928555 100644 --- a/configure.in +++ b/configure.in @@ -2707,7 +2707,7 @@ if test "$ol_link_perl" != no ; then fi if test "$ol_enable_shell" != no ; then - if( "$ol_link_thread" != no ; then + if test "$ol_link_thread" != no ; then AC_MSG_WARN([Use of --without-threads is recommended with back-shell]) fi AC_DEFINE(SLAPD_SHELL,1,[define to support SHELL backend])