Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 453aaf7

Browse files
committed
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".
1 parent 234811c commit 453aaf7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/src/sgml/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ INSTALL.html: %.html : stylesheet-text.xsl %.xml
132132
$(XSLTPROC) $(XSLTPROCFLAGS) $(XSLTPROC_HTML_FLAGS) $^ >$@
133133

134134
INSTALL.xml: standalone-install.sgml installation.sgml version.sgml
135-
$(OSX) $(SGMLINCLUDE) -x lower $(filter-out version.sgml,$^) >$@.tmp
135+
$(OSX) $(SPFLAGS) $(SGMLINCLUDE) -x lower $(filter-out version.sgml,$^) >$@.tmp
136136
$(call mangle-xml,chapter)
137137

138138

@@ -144,7 +144,7 @@ INSTALL.xml: standalone-install.sgml installation.sgml version.sgml
144144
# if we try to do "make all" in a VPATH build without the explicit
145145
# $(srcdir) on the postgres.sgml dependency in this rule. GNU make bug?
146146
postgres.xml: $(srcdir)/postgres.sgml $(ALLSGML)
147-
$(OSX) $(SGMLINCLUDE) -x lower $< >$@.tmp
147+
$(OSX) $(SPFLAGS) $(SGMLINCLUDE) -x lower $< >$@.tmp
148148
$(call mangle-xml,book)
149149

150150
define mangle-xml

0 commit comments

Comments
 (0)