[llvm] r185867 - No ',' between programs.
Eric Christopher
echristo at gmail.com
Mon Jul 8 14:18:54 PDT 2013
Author: echristo
Date: Mon Jul 8 16:18:54 2013
New Revision: 185867
URL: http://llvm.org/viewvc/llvm-project?rev=185867&view=rev
Log:
No ',' between programs.
Modified:
llvm/trunk/autoconf/configure.ac
llvm/trunk/configure
Modified: llvm/trunk/autoconf/configure.ac
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/autoconf/configure.ac?rev=185867&r1=185866&r2=185867&view=diff
==============================================================================
--- llvm/trunk/autoconf/configure.ac (original)
+++ llvm/trunk/autoconf/configure.ac Mon Jul 8 16:18:54 2013
@@ -1200,7 +1200,7 @@ if test "$DOTTY" != "echo dotty" ; then
AC_DEFINE_UNQUOTED([LLVM_PATH_DOTTY],"$DOTTY${EXEEXT}",
[Define to path to dotty program if found or 'echo dotty' otherwise])
fi
-AC_PATH_PROGS(XDOT, [xdot, xdot.py], [echo xdot])
+AC_PATH_PROGS(XDOT, [xdot xdot.py], [echo xdot])
if test "$XDOT" != "echo xdot" ; then
AC_DEFINE([HAVE_XDOT],[1],[Define if the xdot program is available])
dnl If we're targeting for mingw we should emit windows paths, not msys
Modified: llvm/trunk/configure
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/configure?rev=185867&r1=185866&r2=185867&view=diff
==============================================================================
--- llvm/trunk/configure (original)
+++ llvm/trunk/configure Mon Jul 8 16:18:54 2013
@@ -7225,7 +7225,7 @@ cat >>confdefs.h <<_ACEOF
_ACEOF
fi
-for ac_prog in xdot, xdot.py
+for ac_prog in xdot xdot.py
do
# Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
More information about the llvm-commits
mailing list