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 36A4B158090 for ; Sun, 15 May 2022 01:02:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6EC3CE08AD; Sun, 15 May 2022 01:02:53 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3A38CE0891 for ; Sun, 15 May 2022 01:02:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5894C34179E for ; Sun, 15 May 2022 01:02:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 11CE7464 for ; Sun, 15 May 2022 01:02:51 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1652576564.e810fb4cf1af6b7fe7d00ea7b73e99e917d83fc0.sam@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/install-qa-check.d/ X-VCS-Repository: proj/portage X-VCS-Files: bin/install-qa-check.d/60pkgconfig X-VCS-Directories: bin/install-qa-check.d/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: e810fb4cf1af6b7fe7d00ea7b73e99e917d83fc0 X-VCS-Branch: master Date: Sun, 15 May 2022 01:02:51 +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: 7b3c597d-7014-423b-aaa5-61448edebed8 X-Archives-Hash: 8af4b2a82bf13ed904d2fae159bac247 commit: e810fb4cf1af6b7fe7d00ea7b73e99e917d83fc0 Author: Sam James gentoo org> AuthorDate: Sun May 15 01:01:42 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun May 15 01:02:44 2022 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=e810fb4c bin/install-qa-check.d/60pkgconfig: egrep -> grep -E Signed-off-by: Sam James gentoo.org> bin/install-qa-check.d/60pkgconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/install-qa-check.d/60pkgconfig b/bin/install-qa-check.d/60pkgconfig index 25143275f..d4ba42f5b 100644 --- a/bin/install-qa-check.d/60pkgconfig +++ b/bin/install-qa-check.d/60pkgconfig @@ -11,7 +11,7 @@ pkgconfig_check() { local f # Look for leaking LDFLAGS into pkg-config files - f=$(egrep -zsH '^Libs.*-Wl,(-O[012]|--hash-style)' "${files[@]}") + f=$(grep -E -zsH '^Libs.*-Wl,(-O[012]|--hash-style)' "${files[@]}") if [[ -n ${f} ]] ; then eqawarn "QA Notice: pkg-config files with wrong LDFLAGS detected:" eqatag -v pkgconfig.bad-ldlags "${f//${D}}" @@ -69,7 +69,7 @@ pkgconfig_check() { fi # In ${ED}/usr/lib, we shouldn't reference lib64 - if egrep -q "=(/usr)?/lib64" ${f} ; then + if grep -E -q "=(/usr)?/lib64" ${f} ; then bad_libdir+=( "${f//${D}}" ) fi elif [[ ${f} == *lib64/pkgconfig* ]] ; then