Skip to content

Commit

Permalink
rename clang command package to clangCommon as it was breaking import…
Browse files Browse the repository at this point in the history
…s test.
  • Loading branch information
bdbaddog committed Mar 25, 2018
1 parent 8fc1a32 commit 0cefc2b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/engine/SCons/Tool/clang.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@

import SCons.Util
import SCons.Tool.cc
from SCons.Tool.clang import get_clang_install_dirs
from SCons.Tool.clangCommon import get_clang_install_dirs


compilers = ['clang']
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@
def get_clang_install_dirs(platform):
if platform == 'win32':
return clang_win32_dirs
else return []
else:
return []
2 changes: 1 addition & 1 deletion src/engine/SCons/Tool/clangxx.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
import SCons.Tool
import SCons.Util
import SCons.Tool.cxx
from SCons.Tool.clang import get_clang_install_dirs
from SCons.Tool.clangCommon import get_clang_install_dirs


compilers = ['clang++']
Expand Down

0 comments on commit 0cefc2b

Please sign in to comment.