Remove bogus configure check

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
This commit is contained in:
David Greene 2014-06-19 19:31:11 +00:00
parent 30db0c28de
commit 581d5d5df8
1 changed files with 0 additions and 4 deletions

View File

@ -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)