summaryrefslogtreecommitdiffstats
path: root/autogen.sh
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2011-06-28 20:09:52 +0200
committerRichard W.M. Jones <rjones@redhat.com>2011-06-28 23:33:12 +0100
commit72daf40de09cdf78f951a941bf6fbf271bf9d44d (patch)
tree9c81afc3212177200740d208e5e08589f9e7efa0 /autogen.sh
parent76fdcceff966c35ac0f3177e6543486fffb6f754 (diff)
downloadhivex-72daf40de09cdf78f951a941bf6fbf271bf9d44d.tar.gz
hivex-72daf40de09cdf78f951a941bf6fbf271bf9d44d.tar.xz
hivex-72daf40de09cdf78f951a941bf6fbf271bf9d44d.zip
maint: use "test x = x", not "test x == x"
* autogen.sh: Using "test x = x" is more portable.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh2
1 files changed, 1 insertions, 1 deletions
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 "$@"