From: NAKAMURA Takumi Date: Sat, 9 Jul 2011 07:19:50 +0000 (+0000) Subject: lit/LitConfig.py: Demote Win32 message "Unable to find 'bash.exe'" from Warning to... X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=6bb5fe3a0d7cf92cd5e77382f1c737a919ab7669;p=oota-llvm.git 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 --- 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