Remove bogus configure check

Configure creates makefiles, so it doesn't make sense to check for
them to see if we can configure.

llvm-svn: 211301
This commit is contained in:
David Greene 2014-06-19 19:31:11 +00:00
parent 6367738990
commit 03b1c3f438

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)