diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-12-27 03:15:28 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-12-27 03:15:28 +0000 |
commit | 3ed2f2f27a6f303a0da7c52db54134876624bc24 (patch) | |
tree | d2f6bbf420269fc8a523b8dfedc26e583f2e9eb0 | |
parent | 52f853a7a2a1f914be0c58910ac559b61edb5a3a (diff) |
Oops, reverse the logic on a test for WITH_LLVMGCCDIR to make it define
the path names correctly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19146 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | autoconf/configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac index 85145e6c02..a1c6d5fc53 100644 --- a/autoconf/configure.ac +++ b/autoconf/configure.ac @@ -311,7 +311,7 @@ case "$etags_version" in esac AC_SUBST(ETAGSFLAGS,$ETAGSFLAGS) -if test "$WITH_LLVMGCCDIR" != "default" ; then +if test "$WITH_LLVMGCCDIR" = "default" ; then AC_PATH_PROG(LLVMGCC, [llvm-gcc], [llvm-gcc]) AC_PATH_PROG(LLVMGXX, [llvm-g++], [llvm-g++]) else |