Remove bogus configure check
authorDavid Greene <greened@obbligato.org>
Thu, 19 Jun 2014 19:31:11 +0000 (19:31 +0000)
committerDavid Greene <greened@obbligato.org>
Thu, 19 Jun 2014 19:31:11 +0000 (19:31 +0000)
Configure creates makefiles, so it doesn't make sense to check for
them to see if we can configure.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211301 91177308-0d34-0410-b5e6-96231b3b80d8

utils/llvm-compilers-check

index c8bd905ff9cea223c90cb5b7aa43ccee2eefbdbe..4db8426ace88e1632a4aa4906615de04109f964b 100755 (executable)
@@ -538,10 +538,6 @@ class Builder(threading.Thread):
                 self.logger.info("[" + prefix + "] Configure failed, no configure script " + conf)
                 return -1
 
-            if not os.path.exists(mf):
-                self.logger.info("[" + prefix + "] Configure failed, no makefile " + mf)
-                return -1
-
             if os.path.exists(conf) and os.path.exists(mf):
                 confstat = os.stat(conf)
                 makestat = os.stat(mf)