pltcl_*mod commands are broken on Solaris 10

Поиск
Список
Период
Сортировка
От Zdenek Kotala
Тема pltcl_*mod commands are broken on Solaris 10
Дата
Msg-id 4885BD23.1030004@sun.com
обсуждение исходный текст
Ответы Re: pltcl_*mod commands are broken on Solaris 10  (Zdenek Kotala <Zdenek.Kotala@Sun.COM>)
Re: pltcl_*mod commands are broken on Solaris 10  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: pltcl_*mod commands are broken on Solaris 10  (Peter Eisentraut <peter_e@gmx.net>)
Список pgsql-hackers
Commands pltcl_listmod, pltcl_delmod, pltcl_loadmod does not work on Solaris 10, 
because there is not present tclsh. Unfortunately build process substitute  path 
to shell with empty string which invokes infinite loop.

See diff between S10 and Nevada:

bash-3.00# head /usr/postgres/8.3/bin/pltcl_listmod
#! /bin/sh
# $PostgreSQL: pgsql/src/pl/tcl/modules/pltcl_listmod.in,v 1.3 2006/03/11 
04:38:40 momjian Exp $
#
# Start tclsh \
exec  "$0" "$@"

---------------------------------------------------------

bash-3.2$ head pltcl_listmod
#! /bin/sh
# $PostgreSQL: pgsql/src/pl/tcl/modules/pltcl_listmod.in,v 1.3 2006/03/11 
04:38:40 momjian Exp $
#
# Start tclsh \
exec /usr/bin/tclsh "$0" "$@"


By main opinion main problem is in build process which does not fail and also 
dependency on tclsh is hidden by exec command.
    Any idea how to fix it?                Zdenek


-- 
Zdenek Kotala              Sun Microsystems
Prague, Czech Republic     http://sun.com/postgresql



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

Предыдущее
От: chris
Дата:
Сообщение: Re: Postgres-R: primary key patches
Следующее
От: "Jonah H. Harris"
Дата:
Сообщение: Re: Concurrent VACUUM and ANALYZE