From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 58B56158009 for ; Fri, 23 Jun 2023 17:25:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 86EF0E08C3; Fri, 23 Jun 2023 17:25:05 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5664FE08AB for ; Fri, 23 Jun 2023 17:25:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4406E335C67 for ; Fri, 23 Jun 2023 17:25:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 803BEA93 for ; Fri, 23 Jun 2023 17:25:02 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1687535256.3ccc775d6f98c1917408bc3a370cfd6d3d789d50.floppym@gentoo> Subject: [gentoo-commits] proj/sandbox:master commit in: / X-VCS-Repository: proj/sandbox X-VCS-Files: configure.ac X-VCS-Directories: / X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 3ccc775d6f98c1917408bc3a370cfd6d3d789d50 X-VCS-Branch: master Date: Fri, 23 Jun 2023 17:25:02 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b248a11e-49b0-4434-b5f6-8fa0aa9bea24 X-Archives-Hash: e178ceff8b1451f1dd8daec69d57bd86 commit: 3ccc775d6f98c1917408bc3a370cfd6d3d789d50 Author: Mike Gilbert gentoo org> AuthorDate: Fri Jun 23 03:14:58 2023 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Fri Jun 23 15:47:36 2023 +0000 URL: https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=3ccc775d configure: update libc grep expression On Alpine, libc's SONAME is 'libc.musl-x86_64.so.1'. Signed-off-by: Mike Gilbert gentoo.org> configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index a2a0355..5746702 100644 --- a/configure.ac +++ b/configure.ac @@ -378,7 +378,7 @@ echo "int main(void) { return 0; }" > libctest.c $CC $CFLAGS $CPPFLAGS $LDFLAGS -o libctest libctest.c LIBC_VERSION=$( $READELF -d libctest | \ - $EGREP 'NEEDED.* \@<:@libc\.so' | \ + $EGREP 'NEEDED.* \@<:@libc\..*so' | \ $AWK '{print $NF}' | [sed -e 's:\[::' -e 's:\]::'] ) rm -f libctest*