initdb.sh fix...

Started by Larry Rosenmanabout 25 years ago2 messages
#1Larry Rosenman
ler@lerctr.org

Someone's been spending too much time on C code...

the current initdb.sh uses == which doesn't work.

Here's a patch:

Index: initdb.sh
===================================================================
RCS file: /home/projects/pgsql/cvsroot/pgsql/src/bin/initdb/initdb.sh,v
retrieving revision 1.107
diff -c -r1.107 initdb.sh
*** initdb.sh	2000/10/28 22:14:14	1.107
--- initdb.sh	2000/10/29 03:49:36
***************
*** 109,119 ****
  if [ x"$self_path" != x"" ] \
    && [ -x "$self_path/postgres" ] \
!   && [ 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" ]
      then
          PGPATH=$bindir
      else
--- 109,119 ----

if [ x"$self_path" != x"" ] \
&& [ -x "$self_path/postgres" ] \
! && [ 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" ]
then
PGPATH=$bindir
else

--
Larry Rosenman http://www.lerctr.org/~ler
Phone: +1 972-414-9812 (voice) Internet: ler@lerctr.org
US Mail: 1905 Steamboat Springs Drive, Garland, TX 75044-6749

#2Peter Eisentraut
peter_e@gmx.net
In reply to: Larry Rosenman (#1)
Re: initdb.sh fix...

Larry Rosenman writes:

Someone's been spending too much time on C code...

the current initdb.sh uses == which doesn't work.

Works in bash. :-) Thanks.

--
Peter Eisentraut peter_e@gmx.net http://yi.org/peter-e/