mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 12:50:30 +00:00
Don't warn or note if bash is missing
We haven't needed bash on Windows to run the test suite for a long time now. Patch by Michael Edwards! llvm-svn: 228221
This commit is contained in:
parent
90f37476de
commit
018690bc2a
@ -76,7 +76,6 @@ class LitConfig:
|
||||
self.bashPath = lit.util.which('bash')
|
||||
|
||||
if self.bashPath is None:
|
||||
self.warning("Unable to find 'bash'.")
|
||||
self.bashPath = ''
|
||||
|
||||
return self.bashPath
|
||||
@ -91,7 +90,6 @@ class LitConfig:
|
||||
# bash
|
||||
self.bashPath = lit.util.which('bash', dir)
|
||||
if self.bashPath is None:
|
||||
self.note("Unable to find 'bash.exe'.")
|
||||
self.bashPath = ''
|
||||
|
||||
return dir
|
||||
|
Loading…
Reference in New Issue
Block a user