summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorDavid Greene <greened@obbligato.org>2014-06-19 19:31:11 +0000
committerDavid Greene <greened@obbligato.org>2014-06-19 19:31:11 +0000
commit581d5d5df8a7811e1dd5c0221dd2e212ef8dd2ac (patch)
treede25a84c10f304c3978ff8ec57bcf20ac4f14ff9 /utils
parent30db0c28dee5c8dc8b4bfeb2a94a22ceaba7aec9 (diff)
downloadllvm-581d5d5df8a7811e1dd5c0221dd2e212ef8dd2ac.tar.gz
llvm-581d5d5df8a7811e1dd5c0221dd2e212ef8dd2ac.tar.bz2
llvm-581d5d5df8a7811e1dd5c0221dd2e212ef8dd2ac.tar.xz
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
Diffstat (limited to 'utils')
-rwxr-xr-xutils/llvm-compilers-check4
1 files changed, 0 insertions, 4 deletions
diff --git a/utils/llvm-compilers-check b/utils/llvm-compilers-check
index c8bd905ff9..4db8426ace 100755
--- a/utils/llvm-compilers-check
+++ b/utils/llvm-compilers-check
@@ -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)