From: Adam Dickmeiss Date: Fri, 28 Apr 2006 18:50:48 +0000 (+0000) Subject: Fix shell test. Use = rather than == (not portable) X-Git-Tag: before.bug.529~153 X-Git-Url: http://sru.miketaylor.org.uk/cgi-bin?a=commitdiff_plain;h=0ec1c21af9238b4aab7ae0343ad6476ea79842b0;p=idzebra-moved-to-github.git Fix shell test. Use = rather than == (not portable) --- diff --git a/test/zsh/testall.sh b/test/zsh/testall.sh index 57e3a7f..c0db96b 100755 --- a/test/zsh/testall.sh +++ b/test/zsh/testall.sh @@ -1,5 +1,5 @@ #!/bin/sh -# $Id: testall.sh,v 1.5 2006-04-27 10:52:27 marc Exp $ +# $Id: testall.sh,v 1.6 2006-04-28 18:50:48 adam Exp $ # run all zebrash tests srcdir=${srcdir:-"."} @@ -11,7 +11,7 @@ rm -f *.mf reg/*.mf *.out for F in $srcdir/*.zsh do echo $F - if [ "." == $srcdir ] + if [ "." = "$srcdir" ] then # running make check ../../index/zebrash -c $srcdir/zebra.cfg <$F >$F.out else # running make distcheck