From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10931 invoked by alias); 10 Oct 2007 01:11:34 -0000 Received: (qmail 10919 invoked by uid 22791); 10 Oct 2007 01:11:32 -0000 X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org (qpsmtpd/0.31) with ESMTP; Wed, 10 Oct 2007 01:11:29 +0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.13.8/8.13.1) with ESMTP id l9A1BQKf018140; Tue, 9 Oct 2007 21:11:26 -0400 Received: from post-office.corp.redhat.com (post-office.corp.redhat.com [10.11.254.111]) by int-mx1.corp.redhat.com (8.13.1/8.13.1) with ESMTP id l9A1BLwF010202; Tue, 9 Oct 2007 21:11:21 -0400 Received: from greed.delorie.com (vpn-15-134.rdu.redhat.com [10.11.15.134]) by post-office.corp.redhat.com (8.13.8/8.13.8) with ESMTP id l9A1BKla005780; Tue, 9 Oct 2007 21:11:21 -0400 Received: from greed.delorie.com (greed.delorie.com [127.0.0.1]) by greed.delorie.com (8.13.8/8.13.8) with ESMTP id l9A1BK60006630; Tue, 9 Oct 2007 21:11:20 -0400 Received: (from dj@localhost) by greed.delorie.com (8.13.8/8.13.8/Submit) id l9A1BJuj006627; Tue, 9 Oct 2007 21:11:19 -0400 Date: Wed, 10 Oct 2007 01:56:00 -0000 Message-Id: <200710100111.l9A1BJuj006627@greed.delorie.com> From: DJ Delorie To: msnyder@specifix.com CC: gdb-patches@sourceware.org, rsandifo@nildram.co.uk, schwab@suse.de, bkoz@redhat.com In-reply-to: <1191977857.4409.0.camel@localhost.localdomain> (message from Michael Snyder on Tue, 09 Oct 2007 17:57:37 -0700) Subject: Re: [RFA] top level configure and makeinfo/texinfo References: <1191977857.4409.0.camel@localhost.localdomain> X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2007-10/txt/msg00223.txt.bz2 > - | egrep 'texinfo[^0-9]*(4\.([6-9]|[1-9][0-9])|[5-9]|[1-9][0-9])' >/dev/null 2>&1; then > + | egrep 'texinfo[^0-9]*(4\.([6-9]|4\.[1-9][0-9]|[1-9][0-9])|[5-9]|[1-9][0-9])' >/dev/null 2>&1; then Um, the first matches: 4.[6-9] 4.[1-9][0-9] [5-9].* [1-9][0-9].* Yours matches: 4.[6-9] 4.4.[1-9][0-9] 4.[1-9][0-9] [5-9].* [1-9][0-9].* I don't think this is what you want.