Skip to content
Snippets Groups Projects
Commit 2053db4d authored by Todd Gamblin's avatar Todd Gamblin
Browse files

Make clang detection work on AWS Ubuntu14.

parent 7ebb17e4
Branches
Tags
No related merge requests found
......@@ -101,7 +101,7 @@ def default_version(cls, comp):
ver = match.group(1) + '-apple'
else:
# Normal clang compiler versions are left as-is
match = re.search(r'^clang version ([^ )]+)', output)
match = re.search(r'clang version ([^ )]+)', output)
if match:
ver = match.group(1)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment