diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2017-04-07 18:26:06 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2017-04-07 18:30:13 -0400 |
commit | 453aaf76880b42eb5f205933d2422fe7c773b06f (patch) | |
tree | e6252ddbb1494370b5d8fee0dce2ade6167cb9e1 | |
parent | 234811c21de4246e347e8369328bcaf706a35281 (diff) | |
download | postgresql-453aaf76880b42eb5f205933d2422fe7c773b06f.tar.gz postgresql-453aaf76880b42eb5f205933d2422fe7c773b06f.zip |
doc: Add SPFLAGS to osx calls
This enables the same OpenSP warnings on osx calls that we get from
onsgmls (make check) and formerly from openjade.
Older tool chains apparently have some of these warnings on by
default (see comment at SPFLAGS assignment). So users of such tool
chains would complain about warnings or errors that users of newer tool
chains would not see, unless they used "make check".
-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 6a2cbf26ee7..8a73cc796f8 100644 --- a/doc/src/sgml/Makefile +++ b/doc/src/sgml/Makefile @@ -132,7 +132,7 @@ INSTALL.html: %.html : stylesheet-text.xsl %.xml $(XSLTPROC) $(XSLTPROCFLAGS) $(XSLTPROC_HTML_FLAGS) $^ >$@ INSTALL.xml: standalone-install.sgml installation.sgml version.sgml - $(OSX) $(SGMLINCLUDE) -x lower $(filter-out version.sgml,$^) >$@.tmp + $(OSX) $(SPFLAGS) $(SGMLINCLUDE) -x lower $(filter-out version.sgml,$^) >$@.tmp $(call mangle-xml,chapter) @@ -144,7 +144,7 @@ INSTALL.xml: standalone-install.sgml installation.sgml version.sgml # if we try to do "make all" in a VPATH build without the explicit # $(srcdir) on the postgres.sgml dependency in this rule. GNU make bug? postgres.xml: $(srcdir)/postgres.sgml $(ALLSGML) - $(OSX) $(SGMLINCLUDE) -x lower $< >$@.tmp + $(OSX) $(SPFLAGS) $(SGMLINCLUDE) -x lower $< >$@.tmp $(call mangle-xml,book) define mangle-xml |