Received: from localhost (mx1.hub.org [200.46.208.251]) by postgresql.org (Postfix) with ESMTP id 6FAF79FB38B for ; Wed, 4 Oct 2006 21:53:26 -0300 (ADT) Received: from postgresql.org ([200.46.204.71]) by localhost (mx1.hub.org [200.46.208.251]) (amavisd-new, port 10024) with ESMTP id 63306-03 for ; Wed, 4 Oct 2006 21:53:22 -0300 (ADT) X-Greylist: from auto-whitelisted by SQLgrey- Received: from smtp2.rz.uni-karlsruhe.de (smtp2.rz.uni-karlsruhe.de [129.13.185.218]) by postgresql.org (Postfix) with ESMTP id C02889F9F7B for ; Wed, 4 Oct 2006 21:53:21 -0300 (ADT) Received: from rzstud2.stud.uni-karlsruhe.de (exim@rzstud2.stud.uni-karlsruhe.de [193.196.41.38]) by smtp2.rz.uni-karlsruhe.de with esmtp (Exim 4.50 #1) id 1GVHUE-0003rX-NO; Thu, 05 Oct 2006 02:53:18 +0200 Received: from uwi7 by rzstud2.stud.uni-karlsruhe.de with local (Exim 4.43) id 1GVHUE-0006GR-Hf; Thu, 05 Oct 2006 02:53:18 +0200 From: Andreas Seltenreich To: Bruce Momjian Cc: Peter Eisentraut , pgsql-docs@postgresql.org Subject: Re: Texinfo docs/target References: <200610032113.k93LDOK20486@momjian.us> X-Face: $:F<87a[gD1?#R6S3j21cr1&C&7bd63GHC.tSdskUb}hhwG(ci*=D5kJ<_N+p9q(7-, PnG. Et.Yh (Bruce Momjian's message of "Tue\, 3 Oct 2006 17\:13\:24 -0400 \(EDT\)") User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/22.0.50 (gnu/linux) Message-ID: <87u02jzipu.fsf@gate450.dyndns.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Virus-Scanned: Maia Mailguard 1.0.1 X-Spam-Status: No, hits=0.343 tagged_above=0 required=5 tests=AWL X-Spam-Level: X-Archive-Number: 200610/10 X-Sequence-Number: 3731 --=-=-= Bruce Momjian writes: > Patch applied. Thanks. Here's a small update to pass the basename of the target as a stylesheet parameter. This makes the resulting info file work properly when compressed or split. It also prevents Debian's "install-info" script from choking. Thanks, andreas --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=Makefile.diff Index: doc/src/sgml/Makefile =================================================================== RCS file: /projects/cvsroot/pgsql/doc/src/sgml/Makefile,v retrieving revision 1.77 diff -u -r1.77 Makefile --- doc/src/sgml/Makefile 3 Oct 2006 21:13:17 -0000 1.77 +++ doc/src/sgml/Makefile 5 Oct 2006 00:32:33 -0000 @@ -231,7 +231,7 @@ MAKEINFO = makeinfo postgres.texixml: postgres.xml - $(DB2X_XSLTPROC) -s texi $< -o $@ + $(DB2X_XSLTPROC) -s texi -g output-file=$(basename $@) $< -o $@ postgres.texi: postgres.texixml $(DB2X_TEXIXML) --encoding=iso-8859-1//TRANSLIT $< \ --=-=-=--