Use = rather == in test (for Perl)
authorAdam Dickmeiss <adam@indexdata.dk>
Tue, 26 Nov 2002 20:15:44 +0000 (20:15 +0000)
committerAdam Dickmeiss <adam@indexdata.dk>
Tue, 26 Nov 2002 20:15:44 +0000 (20:15 +0000)
buildconf.sh
configure.in

index 6557a17..c84083e 100755 (executable)
@@ -1,5 +1,6 @@
 #!/bin/sh
-# $Id: buildconf.sh,v 1.8 2002-04-30 21:07:56 adam Exp $
+# $Id: buildconf.sh,v 1.9 2002-11-26 20:15:44 adam Exp $
+set -x
 dir=`aclocal --print-ac-dir`
 if [ -f $dir/yaz.m4 ]; then
        aclocal
index f1aa8fb..c940861 100644 (file)
@@ -1,5 +1,5 @@
 dnl Zebra, Index Data Aps, 1995-2002
-dnl $Id: configure.in,v 1.57 2002-11-26 13:50:29 adam Exp $
+dnl $Id: configure.in,v 1.58 2002-11-26 20:15:44 adam Exp $
 dnl
 AC_INIT(include/zebraver.h)
 AM_INIT_AUTOMAKE(idzebra,1.3.4)
@@ -202,7 +202,7 @@ PERL_BINARY=""
 AC_ARG_WITH(perl,   [  --with-perl[=FILE]      perl binary location],[perl=$withval])
 if test "$perl" != "no"; then
        AC_MSG_CHECKING(for perl binary)
-       if test "$perl" == "yes"; then
+       if test "$perl" = "yes"; then
            perlbin=`which perl`
        else
             perlbin="$perl"