From 8e111c77e4f21612202f388d2f6318c1e90f6344 Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Sun, 22 Feb 2009 08:15:14 +0000 Subject: [PATCH] ccc: Remove unknown host warning, it was breaking gcc's configure. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65276 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/ccc/ccclib/HostInfo.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/ccc/ccclib/HostInfo.py b/tools/ccc/ccclib/HostInfo.py index 917dc95131..9f61b87502 100644 --- a/tools/ccc/ccclib/HostInfo.py +++ b/tools/ccc/ccclib/HostInfo.py @@ -117,5 +117,4 @@ def getHostInfo(driver): if handler: return handler(driver) - driver.warning('Unknown host %r, using generic host information.' % system) return UnknownHostInfo(driver)