From 72daf40de09cdf78f951a941bf6fbf271bf9d44d Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 28 Jun 2011 20:09:52 +0200 Subject: maint: use "test x = x", not "test x == x" * autogen.sh: Using "test x = x" is more portable. --- autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'autogen.sh') diff --git a/autogen.sh b/autogen.sh index ae68052..eb09236 100755 --- a/autogen.sh +++ b/autogen.sh @@ -51,7 +51,7 @@ mkdir -p perl/lib/Win # If no arguments were specified and configure has run before, use the previous # arguments -if [ $# == 0 -a -x ./config.status ]; then +if [ $# = 0 -a -x ./config.status ]; then ./config.status --recheck else $CONFIGUREDIR/configure "$@" -- cgit