mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-15 06:29:05 +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! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@228221 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -76,7 +76,6 @@ class LitConfig:
|
|||||||
self.bashPath = lit.util.which('bash')
|
self.bashPath = lit.util.which('bash')
|
||||||
|
|
||||||
if self.bashPath is None:
|
if self.bashPath is None:
|
||||||
self.warning("Unable to find 'bash'.")
|
|
||||||
self.bashPath = ''
|
self.bashPath = ''
|
||||||
|
|
||||||
return self.bashPath
|
return self.bashPath
|
||||||
@@ -91,7 +90,6 @@ class LitConfig:
|
|||||||
# bash
|
# bash
|
||||||
self.bashPath = lit.util.which('bash', dir)
|
self.bashPath = lit.util.which('bash', dir)
|
||||||
if self.bashPath is None:
|
if self.bashPath is None:
|
||||||
self.note("Unable to find 'bash.exe'.")
|
|
||||||
self.bashPath = ''
|
self.bashPath = ''
|
||||||
|
|
||||||
return dir
|
return dir
|
||||||
|
Reference in New Issue
Block a user