From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1706555-garchives=archives.gentoo.org@lists.gentoo.org>
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 (4096 bits))
	(No client certificate requested)
	by finch.gentoo.org (Postfix) with ESMTPS id BE2BB15812D
	for <garchives@archives.gentoo.org>; Mon, 06 Jan 2025 10:19:59 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id ECE29E078A;
	Mon, 06 Jan 2025 10:19:58 +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 CCC32E078A
	for <gentoo-commits@lists.gentoo.org>; Mon, 06 Jan 2025 10:19:58 +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 AD1E733FD3F
	for <gentoo-commits@lists.gentoo.org>; Mon, 06 Jan 2025 10:19:57 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 1BD9FAED
	for <gentoo-commits@lists.gentoo.org>; Mon, 06 Jan 2025 10:19:56 +0000 (UTC)
From: "Ulrich Müller" <ulm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" <ulm@gentoo.org>
Message-ID: <1736158719.c52e71b428cad394a0e6840a831ca122ea7f8bde.ulm@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/10ignored-flags
X-VCS-Directories: bin/install-qa-check.d/
X-VCS-Committer: ulm
X-VCS-Committer-Name: Ulrich Müller
X-VCS-Revision: c52e71b428cad394a0e6840a831ca122ea7f8bde
X-VCS-Branch: master
Date: Mon, 06 Jan 2025 10:19:56 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 52993497-657a-4ae7-927d-04f073c34b66
X-Archives-Hash: 4c296da403a06c7be8db6299fffc9bb5

commit:     c52e71b428cad394a0e6840a831ca122ea7f8bde
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Mon Jan  6 10:18:39 2025 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Mon Jan  6 10:18:39 2025 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=c52e71b4

install-qa-check.d/10ignored-flags: Update two comments

Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 bin/install-qa-check.d/10ignored-flags | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/bin/install-qa-check.d/10ignored-flags b/bin/install-qa-check.d/10ignored-flags
index b55b074e14..6e7044cd42 100644
--- a/bin/install-qa-check.d/10ignored-flags
+++ b/bin/install-qa-check.d/10ignored-flags
@@ -20,8 +20,8 @@ ignored_flag_check() {
 	# Check for files built without respecting *FLAGS. Note that
 	# -frecord-gcc-switches must be in all *FLAGS variables, in
 	# order to avoid false positive results here.
-	# NOTE: This check must execute before prepall/prepstrip, since
-	# prepstrip strips the .GCC.command.line sections.
+	# NOTE: This check must execute before estrip --prepallstrip,
+	# since estrip strips the .GCC.command.line sections.
 	if [[ "${CFLAGS}" == *-frecord-gcc-switches* ]] && \
 	[[ "${CXXFLAGS}" == *-frecord-gcc-switches* ]] && \
 	[[ "${FFLAGS}" == *-frecord-gcc-switches* ]] && \
@@ -30,7 +30,7 @@ ignored_flag_check() {
 		for x in $(scanelf -qyRF '#k%p' -k '!.GCC.command.line' "${ED%/}/") ; do
 			# Separate out file types that are known to support
 			# .GCC.command.line sections, using the `file` command
-			# similar to how prepstrip uses it.
+			# similar to how estrip uses it.
 			f=$(file -S "${x}") || continue
 			[[ -z ${f} ]] && continue
 			if [[ ${f} == *"SB executable"* || ${f} == *"SB pie executable"* ||