Re: [HACKERS] Is postgres.gif missing in cvs?

Поиск
Список
Период
Сортировка
От Bruce Momjian
Тема Re: [HACKERS] Is postgres.gif missing in cvs?
Дата
Msg-id 200712141321.lBEDLd705456@momjian.us
обсуждение исходный текст
Ответы Re: [HACKERS] Is postgres.gif missing in cvs?  (Peter Eisentraut <peter_e@gmx.net>)
Список pgsql-patches
> You need to say "make postgres-US.pdf" or -A4.  The .gif file is coming
> from make's default rules.  Perhaps we should provide a real target
> matching postgres.pdf and error out with a helpful message as this isn't
> the first time people have been bitten by that change.

I have applied the attached patch to give a helpful message if you try
to create postgres.ps or postgres.pdf.

--
  Bruce Momjian  <bruce@momjian.us>        http://momjian.us
  EnterpriseDB                             http://postgres.enterprisedb.com

  + If your life is a hard drive, Christ can be your backup. +
Index: doc/src/sgml/Makefile
===================================================================
RCS file: /cvsroot/pgsql/doc/src/sgml/Makefile,v
retrieving revision 1.102
diff -c -c -r1.102 Makefile
*** doc/src/sgml/Makefile    5 Dec 2007 10:06:08 -0000    1.102
--- doc/src/sgml/Makefile    14 Dec 2007 13:18:58 -0000
***************
*** 161,169 ****
--- 161,175 ----
      jadetex $<

  # PostScript from TeX
+ postgres.ps:
+     $(error Use 'gmake postgres-US.ps' or 'gmake postgres-A4.ps')
+
  %.ps: %.dvi
      dvips -o $@ $<

+ postgres.pdf:
+     $(error Use 'gmake postgres-US.pdf' or 'gmake postgres-A4.pdf')
+
  %.pdf: %.tex-pdf
      @rm -f $*.aux $*.log $*.out
  # multiple runs are necessary to create proper intra-document links

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

Предыдущее
От: Alvaro Herrera
Дата:
Сообщение: Re: result of convert_to is bytea
Следующее
От: Peter Eisentraut
Дата:
Сообщение: Re: [HACKERS] Is postgres.gif missing in cvs?