Make clang detection work on AWS Ubuntu14.
This commit is contained in:
parent
7ebb17e459
commit
2053db4d17
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue