From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1051029-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 894BA138334 for <garchives@archives.gentoo.org>; Mon, 8 Oct 2018 21:48:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 53DDCE078A; Mon, 8 Oct 2018 21:48:09 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2479BE078A for <gentoo-commits@lists.gentoo.org>; Mon, 8 Oct 2018 21:48:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id ED5EA335CEF for <gentoo-commits@lists.gentoo.org>; Mon, 8 Oct 2018 21:48:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 267B8391 for <gentoo-commits@lists.gentoo.org>; Mon, 8 Oct 2018 21:47:59 +0000 (UTC) From: "Zac Medico" <zmedico@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, "Zac Medico" <zmedico@gentoo.org> Message-ID: <1539034931.de791662d152f3645274750d3f22b853716927aa.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/estrip X-VCS-Directories: bin/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: de791662d152f3645274750d3f22b853716927aa X-VCS-Branch: master Date: Mon, 8 Oct 2018 21:47:59 +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-Archives-Salt: ac366d96-204d-454c-9b48-96dc4431c561 X-Archives-Hash: 4e1b737923bcc6c780ff7c9b0b92f7c5 commit: de791662d152f3645274750d3f22b853716927aa Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Sun Mar 25 12:31:36 2018 +0000 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org> CommitDate: Mon Oct 8 21:42:11 2018 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=de791662 estrip: Report pre-stripped files even with RESTRICT=strip The purpose of RESTRICT=strip is to prevent files from being stripped, not to silence QA checks about pre-stripped files. Signed-off-by: Zac Medico <zmedico <AT> gentoo.org> bin/estrip | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/estrip b/bin/estrip index 3ee4b01ac..369755cfe 100755 --- a/bin/estrip +++ b/bin/estrip @@ -308,7 +308,7 @@ process_elf() { # The existance of the section .symtab tells us that a binary is stripped. # We want to log already stripped binaries, as this may be a QA violation. # They prevent us from getting the splitdebug data. -if ! ${RESTRICT_binchecks} && ! ${RESTRICT_strip} ; then +if ! ${RESTRICT_binchecks} ; then # We need to do the non-stripped scan serially first before we turn around # and start stripping the files ourselves. The log parsing can be done in # parallel though.