From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-3.4 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED,RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 24483 invoked from network); 19 Sep 2020 21:05:47 -0000 Received: from mother.openwall.net (195.42.179.200) by inbox.vuxu.org with ESMTPUTF8; 19 Sep 2020 21:05:47 -0000 Received: (qmail 31888 invoked by uid 550); 19 Sep 2020 21:05:46 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Reply-To: musl@lists.openwall.com Received: (qmail 31864 invoked from network); 19 Sep 2020 21:05:45 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=dereferenced.org; s=default; t=1600549534; h=from:from:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:mime-version:mime-version: content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=9iAByAkDRrxqQXBUJzCOZD49M/REb6tI5hK64tCZGG8=; b=jKJozXcVelwt0Jm3QFvKC0Z+7n75EkBmIp9XZcxYfQwCrwwTwd6EC1+db+gwASF71QPNve 88d3poXyOLsbbFNvC8rgkSeontw8FcLR3/ZOl3DBrHnYpp93RVom+XNl5tyRKIah5jtijO n2IBJ6AyUSecj2xQ2etPOAJkSrCuLT4= X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Ariadne Conill To: musl@lists.openwall.com, Jeffrey Walton References: <4884197.be5NI9L3Sv@omega> <9188925c-52df-c21f-71ca-e002d9ed3a2d@dereferenced.org> Message-ID: Date: Sat, 19 Sep 2020 15:05:31 -0600 MIME-Version: 1.0 In-Reply-To: <9188925c-52df-c21f-71ca-e002d9ed3a2d@dereferenced.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 8bit Subject: Re: [musl] Re: [platform-testers] new snapshot available: grep-3.4-almost.19-ff30 Hello, On 2020-09-19 15:00, Ariadne Conill wrote: > Hello, > > On 2020-09-19 08:12, Jeffrey Walton wrote: >> Hi Everyone, >> >> An FYI from testing a grep release candidate. The RC experienced 3 >> failures on Alpine Linux. >> >> Bruno Haible tracked down the cause. >> >> I usually update a package's config.guess and config.sub according to >> https://www.gnu.org/software/gettext/manual/html_node/config_002eguess.html. >> >> I may have contributed to the problem by using the latest config.guess >> and config.sub. >> >> I'm not sure if there is anything actionable for Musl or Alpine. > > This was curious, so I looked into it. > > /usr/bin/ldd was changed to be a shell script in the Alpine musl > 1.1.22-r1 package.  This was done to improve the output of the ldd command. > > The problem with this package is that shell script was: > > exec /lib/ld-musl-$ARCH.so.1 --list -- "$@" > > In Alpine musl 1.1.22-r3, the shell script was changed to: > > exec /lib/ld-musl-$ARCH.so.1 --list "$@" > > This allowed --version to work again as expected. > > I don't think that GNU needs to have a workaround for this.  We can > simply backport 1.1.22-r3 to Alpine 3.10 to resolve the bug. While looking into doing a backport, I saw that Natanael Copa already backported this fix to 3.10 as musl 1.1.22-r2 package. So if you are using latest 3.10.x release, you would already have this fix. Ariadne