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.1 required=5.0 tests=DKIM_INVALID,DKIM_SIGNED, 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 23955 invoked from network); 19 Sep 2020 21:01:16 -0000 Received: from mother.openwall.net (195.42.179.200) by inbox.vuxu.org with ESMTPUTF8; 19 Sep 2020 21:01:16 -0000 Received: (qmail 28307 invoked by uid 550); 19 Sep 2020 21:01:13 -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 28289 invoked from network); 19 Sep 2020 21:01:13 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=dereferenced.org; s=default; t=1600549261; h=from:from: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=u7vautOauffZF++mYjFLQCtaizclefvvb64XNMv89zI=; b=Q8fycUQ5hX+HVGjKIvdPuhldidNSi99ND9D4xOnGBmF7Ej8IeRrKBz/N1cI/6pwpxARRds H6aq5NuVDPN0QeR0hrXVmLAGtlF/cp3RTYMP6b7d0ACTAmyJoGO1om6p1r/ecK9BdIHYZg 1T5Va3gj26tRFkDG9fag1FL1v85vWgg= To: musl@lists.openwall.com, Jeffrey Walton References: <4884197.be5NI9L3Sv@omega> X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Ariadne Conill Message-ID: <9188925c-52df-c21f-71ca-e002d9ed3a2d@dereferenced.org> Date: Sat, 19 Sep 2020 15:00:58 -0600 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [musl] Re: [platform-testers] new snapshot available: grep-3.4-almost.19-ff30 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. Ariadne