diff options
author | Bruce Momjian | 2004-03-05 19:48:03 +0000 |
---|---|---|
committer | Bruce Momjian | 2004-03-05 19:48:03 +0000 |
commit | 8fc7522cad4d6df754506b10d6fbafbccba91ccf (patch) | |
tree | 6af9f062e844153df456620f562a3f475bc7d548 | |
parent | aef037723f8176008a69bff9496551c9f99a4f91 (diff) |
Use '-' for stdin on lynx, my lynx version doesn't support -stdin.
-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 72af0860ec4..8f16fe09459 100644 --- a/doc/src/sgml/Makefile +++ b/doc/src/sgml/Makefile @@ -2,7 +2,7 @@ # # PostgreSQL documentation makefile # -# $PostgreSQL: pgsql/doc/src/sgml/Makefile,v 1.66 2004/03/02 00:03:02 tgl Exp $ +# $PostgreSQL: pgsql/doc/src/sgml/Makefile,v 1.67 2004/03/05 19:48:03 momjian Exp $ # #---------------------------------------------------------------------------- @@ -180,7 +180,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 -stdin >$@ + $(PERL) -p -e 's/<H(1|2)$$/<H\1 align=center/g' $< | $(LYNX) -force_html -dump -nolist - >$@ INSTALL.html: standalone-install.sgml installation.sgml version.sgml $(JADE.text) -V nochunks standalone-install.sgml installation.sgml >$@ |