From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 4.0.0 (2022-12-14) on finch.gentoo.org X-Spam-Level: X-Spam-Status: No, score=-1.0 required=5.0 tests=DMARC_MISSING, MAILING_LIST_MULTI autolearn=unavailable autolearn_force=no version=4.0.0 Received: from exchange.colubris.com (gate.colubris.com [206.162.167.230]) by chiba.3jane.net (Postfix) with ESMTP id 42B73AC7C4 for ; Sat, 20 Apr 2002 09:50:56 -0500 (CDT) Received: from localhost ([192.168.30.115] RDNS failed) by exchange.colubris.com with Microsoft SMTPSVC(5.0.2195.3779); Sat, 20 Apr 2002 10:47:23 -0400 Content-Type: text/plain; charset="us-ascii" From: Yannick Koehler To: gentoo-dev@gentoo.org Date: Sat, 20 Apr 2002 10:50:51 -0400 X-Mailer: KMail [version 1.4] MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Message-Id: <200204201050.51133.yannick.koehler@colubris.com> X-OriginalArrivalTime: 20 Apr 2002 14:47:23.0359 (UTC) FILETIME=[47EF16F0:01C1E87A] Subject: [gentoo-dev] automake wrapper bug Sender: gentoo-dev-admin@gentoo.org Errors-To: gentoo-dev-admin@gentoo.org X-BeenThere: gentoo-dev@gentoo.org X-Mailman-Version: 2.0.6 Precedence: bulk Reply-To: gentoo-dev@gentoo.org List-Help: List-Post: List-Subscribe: , List-Id: Gentoo Linux developer list List-Unsubscribe: , List-Archive: X-Archives-Salt: 87766984-1b64-405f-a11c-30fdaf905119 X-Archives-Hash: fe5b204628381250dddd864a223f4c73 Hello, =09Actually I found my problem. The way the aclocal.m4 is generated on m= y=20 machine is like this =09AC_PREREQ([2.13]) =09Which the am-wrapper incorrectly parse as being version '[2.' instead = of 2.1=20 like it should have been. =09So there's a bug in this line which doesn't take into account square=20 brackets: || (cat_('aclocal.m4') =3D~ /^\s*AC_PREREQ\(([^\)]{3})[^\)]*\)/m ? $1 : '= ') gt=20 '2.1' Yannick Koehler