diff mbox

Fix typo in toplevel configure.ac: PPL error message

Message ID 20110211185904.GA28306@gmx.de
State New
Headers show

Commit Message

Ralf Wildenhues Feb. 11, 2011, 6:59 p.m. UTC
Toplevel configure created a file named '5]' when no usable PPL library
was found, due to extra bracket leading to a redirection of the form
'>&5]'.  Fixed by the patch below, pushed as obvious.

No sync to src yet because toplevel has diverged again.  Will fix.

Thanks,
Ralf

Fix typo in toplevel configure.ac: PPL error message.

ChangeLog:
2011-02-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>

	* configure.ac: Remove extra bracket.
	* configure: Regenerate.
diff mbox

Patch

diff --git a/configure.ac b/configure.ac
index e9048eb..9121d65 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1691,7 +1691,7 @@  if test "x$with_ppl" = "xno"; then
   dnl Only execute fail-action, if CLooG has been requested.
   CLOOG_REQUESTED([graphite_requested=yes], [graphite_requested=no])
   if test "${graphite_requested}" = yes; then
-    AC_MSG_ERROR([Unable to find a usable PPL.  See config.log for details.])]
+    AC_MSG_ERROR([Unable to find a usable PPL.  See config.log for details.])
   fi
   with_cloog=no
 fi