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: [EMAIL PROTECTED]
US Mail: 1905 Steamboat Springs Drive, Garland, TX 75044-6749

Reply via email to