Minor build fixes.
This commit is contained in:
parent
933a3a3c4a
commit
9582bcb54e
4
Makefile
4
Makefile
|
@ -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)
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -77,7 +77,7 @@ def buildRelease(label,
|
|||
extarg = ''
|
||||
|
||||
if ratified:
|
||||
ratifiedarg = '-a ratified_core_spec'
|
||||
ratifiedarg = 'EXTRAATTRIBS="-a ratified_core_spec"'
|
||||
else:
|
||||
ratifiedarg = ''
|
||||
|
||||
|
|
Loading…
Reference in New Issue