Skip to content
Snippets Groups Projects
Commit 74b439b7 authored by Peter J. Scheibel's avatar Peter J. Scheibel Committed by Todd Gamblin
Browse files

Support 'COMPILERVERSION' in spec format string

parent a135a124
No related branches found
No related tags found
No related merge requests found
......@@ -2311,7 +2311,7 @@ def write(s, c):
elif named_str == 'COMPILERNAME':
if self.compiler:
write(fmt % self.compiler.name, '%')
elif named_str == 'COMPILERVER':
elif named_str in ['COMPILERVER', 'COMPILERVERSION']:
if self.compiler:
write(fmt % self.compiler.versions, '%')
elif named_str == 'COMPILERFLAGS':
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment