aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2000-10-29 11:36:44 +0000
committerPeter Eisentraut <peter_e@gmx.net>2000-10-29 11:36:44 +0000
commit2044bdcca0e807b1b57982a8af74d1f4bd2bef0e (patch)
treebfa7db94a7b0b2cfe230c6df066973e57c34710d /src
parentdfb12a985094b95c417de01661bd634ac9f2738b (diff)
downloadpostgresql-2044bdcca0e807b1b57982a8af74d1f4bd2bef0e.tar.gz
postgresql-2044bdcca0e807b1b57982a8af74d1f4bd2bef0e.zip
Should be "test =", not "test ==".
Diffstat (limited to 'src')
-rw-r--r--src/bin/initdb/initdb.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/initdb/initdb.sh b/src/bin/initdb/initdb.sh
index 587c30ecc94..b7b5ec5dbfe 100644
--- a/src/bin/initdb/initdb.sh
+++ b/src/bin/initdb/initdb.sh
@@ -23,7 +23,7 @@
#
# Copyright (c) 1994, Regents of the University of California
#
-# $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.107 2000/10/28 22:14:14 petere Exp $
+# $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.108 2000/10/29 11:36:44 petere Exp $
#
#-------------------------------------------------------------------------
@@ -109,11 +109,11 @@ fi
if [ x"$self_path" != x"" ] \
&& [ -x "$self_path/postgres" ] \
- && [ x"`$self_path/postgres --version 2>/dev/null`" == x"postgres (PostgreSQL) $VERSION" ]
+ && [ x"`$self_path/postgres --version 2>/dev/null`" = x"postgres (PostgreSQL) $VERSION" ]
then
PGPATH=$self_path
elif [ -x "$bindir/postgres" ]; then
- if [ x"`$bindir/postgres --version 2>/dev/null`" == x"postgres (PostgreSQL) $VERSION" ]
+ if [ x"`$bindir/postgres --version 2>/dev/null`" = x"postgres (PostgreSQL) $VERSION" ]
then
PGPATH=$bindir
else