Minor build fixes.

This commit is contained in:
Jon Leech 2018-06-18 03:24:40 -07:00
parent 933a3a3c4a
commit 9582bcb54e
3 changed files with 5 additions and 3 deletions

View File

@ -104,6 +104,7 @@ VERBOSE =
# based on $(VERSIONS))
# EXTATTRIBS sets attributes for enabled extensions (set above based on
# $(EXTENSIONS))
# EXTRAATTRIBS sets additional attributes, if passed to make
# ADOCOPTS options for asciidoc->HTML5 output
NOTEOPTS = -a editing-notes -a implementation-guide
PATCHVERSION = 78
@ -132,7 +133,8 @@ ATTRIBOPTS = -a revnumber="$(SPECREVISION)" \
-a apititle="$(APITITLE)" \
-a stem=latexmath \
$(VERSIONATTRIBS) \
$(EXTATTRIBS)
$(EXTATTRIBS) \
$(EXTRAATTRIBS)
ADOCEXTS = -r $(CURDIR)/config/vulkan-macros.rb -r $(CURDIR)/config/tilde_open_block.rb
ADOCOPTS = -d book $(ATTRIBOPTS) $(NOTEOPTS) $(VERBOSE) $(ADOCEXTS)

View File

@ -127,7 +127,7 @@ if __name__ == '__main__':
buildBranch('1.0-wsi_extensions',
versions = Version1_0,
extensions = khrExts,
ratified = False,
ratified = True,
apititle = '(with KHR extensions)',
xmlTargets = 'clobber install',
specTargets = specTargets,

View File

@ -77,7 +77,7 @@ def buildRelease(label,
extarg = ''
if ratified:
ratifiedarg = '-a ratified_core_spec'
ratifiedarg = 'EXTRAATTRIBS="-a ratified_core_spec"'
else:
ratifiedarg = ''