Oops, reverse the logic on a test for WITH_LLVMGCCDIR to make it define

the path names correctly.

llvm-svn: 19146
This commit is contained in:
Reid Spencer 2004-12-27 03:15:28 +00:00
parent 474a09ca20
commit 189c677549
1 changed files with 1 additions and 1 deletions

View File

@ -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