From 6bb5fe3a0d7cf92cd5e77382f1c737a919ab7669 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Sat, 9 Jul 2011 07:19:50 +0000 Subject: [PATCH] lit/LitConfig.py: Demote Win32 message "Unable to find 'bash.exe'" from Warning to Note. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@134809 91177308-0d34-0410-b5e6-96231b3b80d8 --- utils/lit/lit/LitConfig.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/lit/lit/LitConfig.py b/utils/lit/lit/LitConfig.py index 7ca1b9c4c63..bda91744cce 100644 --- a/utils/lit/lit/LitConfig.py +++ b/utils/lit/lit/LitConfig.py @@ -96,7 +96,7 @@ class LitConfig: # bash self.bashPath = Util.which('bash', dir) if self.bashPath is None: - self.warning("Unable to find 'bash.exe'.") + self.note("Unable to find 'bash.exe'.") self.bashPath = '' return dir -- 2.34.1