summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2019-12-24 09:44:42 -0500
committerMarge Bot <ben+marge-bot@smart-cactus.org>2019-12-27 15:13:32 -0500
commitd03dec8ff7681423b9cafa2ce1b5b5f624e664c7 (patch)
tree855ac9b93486adaaf38a0c2be225b96691d3f3ad
parent47a68205d5781a65504b255f1e8e08b162f0c6eb (diff)
downloadhaskell-d03dec8ff7681423b9cafa2ce1b5b5f624e664c7.tar.gz
use shell variable CcLlvmBackend for test
Previously we used `AC_DEFINE`d variable `CC_LLVM_BACKEND` which has an empty shell expansion.
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index c7a785c35c..812984ff9b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1404,7 +1404,7 @@ echo "\
which is version : $GhcVersion
"
-if test "x$CC_LLVM_BACKEND" = "x1"; then
+if test "x$CcLlvmBackend" = "xYES"; then
CompilerName="clang "
else
CompilerName="gcc "