summaryrefslogtreecommitdiff
path: root/autoconf
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2012-12-26 10:48:49 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2012-12-26 10:48:49 +0000
commit23c5021f42f18fe7862b7f66d0a6c8544c34c5cb (patch)
tree5eb032e9f125f7040cb8d70d1dc17175d0fdb0dc /autoconf
parent0a5ead92ff44416244d32ceafb1b5435b3cca73b (diff)
downloadllvm-23c5021f42f18fe7862b7f66d0a6c8544c34c5cb.tar.gz
llvm-23c5021f42f18fe7862b7f66d0a6c8544c34c5cb.tar.bz2
llvm-23c5021f42f18fe7862b7f66d0a6c8544c34c5cb.tar.xz
Fix quoting in configure. Patch by Krzysztof Parzyszek!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171108 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf')
-rw-r--r--autoconf/configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac
index 0395931659..08e7f32142 100644
--- a/autoconf/configure.ac
+++ b/autoconf/configure.ac
@@ -511,10 +511,10 @@ AC_ARG_ENABLE(clang-rewriter,
case "$enableval" in
yes) AC_SUBST(ENABLE_CLANG_REWRITER,[1]) ;;
no)
- if test clang_arcmt != "no" ; then
+ if test ${clang_arcmt} != "no" ; then
AC_MSG_ERROR([Cannot enable clang ARC Migration Tool while disabling rewriter.])
fi
- if test clang_static_analyzer != "no" ; then
+ if test ${clang_static_analyzer} != "no" ; then
AC_MSG_ERROR([Cannot enable clang static analyzer while disabling rewriter.])
fi
AC_SUBST(ENABLE_CLANG_REWRITER,[0])