diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2009-06-19 19:14:25 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2009-06-19 19:14:25 +0000 |
commit | c79b4505c13a4779b7d2c3463315783a363a2b29 (patch) | |
tree | 430b21eaf4d6922d265c3d81cdaabbdf2124961e | |
parent | 6f1286c12d7cbb5df49340b3a5d52d1335c320fa (diff) | |
download | postgresql-c79b4505c13a4779b7d2c3463315783a363a2b29.tar.gz postgresql-c79b4505c13a4779b7d2c3463315783a363a2b29.zip |
Don't convert the man page names to lower case, so that the .so links work.
This is pretty much a workaround for incomplete tools, but having the man
page names in upper case looks more natural anyway.
-rw-r--r-- | doc/src/sgml/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/Makefile b/doc/src/sgml/Makefile index 82aacfe38c4..df090898994 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.115 2009/05/02 20:17:19 tgl Exp $ +# $PostgreSQL: pgsql/doc/src/sgml/Makefile,v 1.116 2009/06/19 19:14:25 petere Exp $ # #---------------------------------------------------------------------------- @@ -74,9 +74,9 @@ DEFAULTSECTION = l fix_man_xrefs = $(PERL) -npi -e 's{\[XRef to GUC-([A-Z0-9-]*)\]}{($$l = $$1) =~ tr/A-Z-/a-z_/, $$l}ge || s{\[XRef to [A-Z0-9-]*\]}{in the documentation}g' man: postgres.sgml $(ALLSGML) - $(NSGMLS) $(NSGMLS_FLAGS) $(SGMLINCLUDE) $< | $(SGMLSPL) $(D2MSCRIPT) --lowercase --section $(DEFAULTSECTION) --date "`date '+%Y-%m-%d'`" + $(NSGMLS) $(NSGMLS_FLAGS) $(SGMLINCLUDE) $< | $(SGMLSPL) $(D2MSCRIPT) --section $(DEFAULTSECTION) --date "`date '+%Y-%m-%d'`" # One more time, to resolve cross-references - $(NSGMLS) $(NSGMLS_FLAGS) $(SGMLINCLUDE) $< | $(SGMLSPL) $(D2MSCRIPT) --lowercase --section $(DEFAULTSECTION) --date "`date '+%Y-%m-%d'`" + $(NSGMLS) $(NSGMLS_FLAGS) $(SGMLINCLUDE) $< | $(SGMLSPL) $(D2MSCRIPT) --section $(DEFAULTSECTION) --date "`date '+%Y-%m-%d'`" $(fix_man_xrefs) *.1 *.7 $(mkinstalldirs) man1 man7 $(D2MLINKS) < manpage.links |