initdb.sh fix...

Поиск
Список
Период
Сортировка
От Larry Rosenman
Тема initdb.sh fix...
Дата
Msg-id 20001028224952.A12576@lerami.lerctr.org
обсуждение исходный текст
Ответы Re: initdb.sh fix...  (Peter Eisentraut <peter_e@gmx.net>)
Список pgsql-hackers
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_pathelif [ -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_pathelif [ -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


В списке pgsql-hackers по дате отправления:

Предыдущее
От: Larry Rosenman
Дата:
Сообщение: Re: more multibyte/After TGL...
Следующее
От: Peter Eisentraut
Дата:
Сообщение: Re: initdb.sh fix...