From: Peter Eisentraut Date: Fri, 19 Jun 2009 19:14:25 +0000 (+0000) Subject: Don't convert the man page names to lower case, so that the .so links work. X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=3464e19fd8917cd548f7e9d17f43ba16d19c40d8;p=users%2Fsimon%2Fpostgres.git 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. --- diff --git a/doc/src/sgml/Makefile b/doc/src/sgml/Makefile index e7b3d86e88..d1556797d3 100644 --- a/doc/src/sgml/Makefile +++ b/doc/src/sgml/Makefile @@ -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