From patchwork Fri Feb 11 18:59:04 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ralf Wildenhues X-Patchwork-Id: 82819 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id D7209B7182 for ; Sat, 12 Feb 2011 05:59:24 +1100 (EST) Received: (qmail 19054 invoked by alias); 11 Feb 2011 18:59:23 -0000 Received: (qmail 19043 invoked by uid 22791); 11 Feb 2011 18:59:22 -0000 X-SWARE-Spam-Status: No, hits=-1.8 required=5.0 tests=AWL, BAYES_00, FREEMAIL_FROM, RCVD_IN_DNSWL_NONE, T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: sourceware.org Received: from mailout-de.gmx.net (HELO mailout-de.gmx.net) (213.165.64.23) by sourceware.org (qpsmtpd/0.43rc1) with SMTP; Fri, 11 Feb 2011 18:59:08 +0000 Received: (qmail invoked by alias); 11 Feb 2011 18:59:05 -0000 Received: from xdsl-78-34-209-81.netcologne.de (EHLO localhost.localdomain) [78.34.209.81] by mail.gmx.net (mp043) with SMTP; 11 Feb 2011 19:59:05 +0100 Received: from ralf by localhost.localdomain with local (Exim 4.69) (envelope-from ) id 1PnyCu-0007Tm-RE for gcc-patches@gcc.gnu.org; Fri, 11 Feb 2011 19:59:04 +0100 Date: Fri, 11 Feb 2011 19:59:04 +0100 From: Ralf Wildenhues To: gcc-patches@gcc.gnu.org Subject: Fix typo in toplevel configure.ac: PPL error message Message-ID: <20110211185904.GA28306@gmx.de> Mail-Followup-To: Ralf Wildenhues , gcc-patches@gcc.gnu.org MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.20 (2010-08-04) X-IsSubscribed: yes Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org 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 * configure.ac: Remove extra bracket. * configure: Regenerate. 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