[llvm] r211301 - Remove bogus configure check
David Greene
greened at obbligato.org
Thu Jun 19 12:31:11 PDT 2014
Author: greened
Date: Thu Jun 19 14:31:11 2014
New Revision: 211301
URL: http://llvm.org/viewvc/llvm-project?rev=211301&view=rev
Log:
Remove bogus configure check
Configure creates makefiles, so it doesn't make sense to check for
them to see if we can configure.
Modified:
llvm/trunk/utils/llvm-compilers-check
Modified: llvm/trunk/utils/llvm-compilers-check
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/llvm-compilers-check?rev=211301&r1=211300&r2=211301&view=diff
==============================================================================
--- llvm/trunk/utils/llvm-compilers-check (original)
+++ llvm/trunk/utils/llvm-compilers-check Thu Jun 19 14:31:11 2014
@@ -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)
More information about the llvm-commits
mailing list