On Wed, Aug 01, 2001 at 08:16:37PM +0200, Graham Leggett wrote: > + LIBLDAP="$withval" > + if test "$LIBLDAP" = "yes"; then
That could be failing if LIBLDAP is blank. Try: if test "x$LIBLDAP" = "xyes"; then HTH. -- justin
On Wed, Aug 01, 2001 at 08:16:37PM +0200, Graham Leggett wrote: > + LIBLDAP="$withval" > + if test "$LIBLDAP" = "yes"; then
That could be failing if LIBLDAP is blank. Try: if test "x$LIBLDAP" = "xyes"; then HTH. -- justin