Re: Cannot build docs on Ubuntu 10.04?

Поиск
Список
Период
Сортировка
От John Lumby
Тема Re: Cannot build docs on Ubuntu 10.04?
Дата
Msg-id COL116-W9647A1E352CAF66550327A3590@phx.gbl
обсуждение исходный текст
Ответ на Cannot build docs on Ubuntu 10.04?  (Josh Berkus <josh@agliodbs.com>)
Ответы Re: Cannot build docs on Ubuntu 10.04?  (Alvaro Herrera <alvherre@commandprompt.com>)
Re: Cannot build docs on Ubuntu 10.04?  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-docs
On 12-01-2012 17:28, Josh Berkus wrote:

> Can't open perl script "/bin/collateindex.pl": No such file or directory

On Thu, 12 Jan 2012 19:37:20 -0300 Alvaro Herrera wrote:
 >  dpkg -S collateindex.pl
docbook-dsssl:

 >  /usr/bin/collateindex.pl


I wonder if everyone noticed that the postgres sgml makefile is looking for the script in /bin
(see Josh's append)
but docbook-dssl puts it in /usr/bin
(see Alvaro's append).

I think this line in
postgresql-9.1.3/doc/src/sgml/Makefile

 COLLATEINDEX = $(DOCBOOKSTYLE)/bin/collateindex.pl

could be improved  -  maybe should read

COLLATEINDEX = `which collateindex.pl`

I fixed it by
 ln `which collateindex.pl` /bin/collateindex.pl

maybe this is what the "configure" that someone mentioned would have done?

Cheers,   John


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

Предыдущее
От: Marti Raudsepp
Дата:
Сообщение: Update documentation wrt visibility map/index-only scans
Следующее
От: Alvaro Herrera
Дата:
Сообщение: Re: Cannot build docs on Ubuntu 10.04?