diff options
author | Tom Lane | 2004-03-02 00:03:08 +0000 |
---|---|---|
committer | Tom Lane | 2004-03-02 00:03:08 +0000 |
commit | b6a7df8b2989f3a5b6b8b729f2cddf6e8518759d (patch) | |
tree | 8184de8e5cfcf3b99156832c17003b752c84dd75 /doc/src | |
parent | f91bde3fb67ab4ae95680afbf822b0181981e1ca (diff) |
Replace unportable use of /dev/stdin with lynx's -stdin switch.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/Makefile b/doc/src/sgml/Makefile index 1da99e0d0a1..79e18306bd7 100644 --- a/doc/src/sgml/Makefile +++ b/doc/src/sgml/Makefile @@ -2,7 +2,7 @@ # # PostgreSQL documentation makefile # -# $Header: /cvsroot/pgsql/doc/src/sgml/Makefile,v 1.59 2003/08/31 17:28:39 petere Exp $ +# $Header: /cvsroot/pgsql/doc/src/sgml/Makefile,v 1.59.2.1 2004/03/02 00:03:08 tgl Exp $ # #---------------------------------------------------------------------------- @@ -168,7 +168,7 @@ JADE.text = $(JADE) $(JADEFLAGS) $(SGMLINCLUDE) $(CATALOG) -d stylesheet.dsl -i LYNX = lynx INSTALL HISTORY regress_README: % : %.html - $(PERL) -p -e 's/<H(1|2)$$/<H\1 align=center/g' $< | $(LYNX) -force_html -dump -nolist /dev/stdin >$@ + $(PERL) -p -e 's/<H(1|2)$$/<H\1 align=center/g' $< | $(LYNX) -force_html -dump -nolist -stdin >$@ INSTALL.html: standalone-install.sgml installation.sgml version.sgml $(JADE.text) -V nochunks standalone-install.sgml installation.sgml >$@ |