From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1RUNcU-0004Pk-Ou for garchives@archives.gentoo.org; Sat, 26 Nov 2011 19:09:03 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F07AB21C197; Sat, 26 Nov 2011 19:08:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id C1C5E21C197 for ; Sat, 26 Nov 2011 19:08:45 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 463DB1B403D for ; Sat, 26 Nov 2011 19:08:45 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id A082380052 for ; Sat, 26 Nov 2011 19:08:43 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <5842245558f2b65bcfd0d4f0fa1739cbbb1cd02e.blueness@gentoo> Subject: [gentoo-commits] proj/elfix:master commit in: scripts/ X-VCS-Repository: proj/elfix X-VCS-Files: scripts/revdep-pax X-VCS-Directories: scripts/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 5842245558f2b65bcfd0d4f0fa1739cbbb1cd02e Date: Sat, 26 Nov 2011 19:08:43 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 3b13dc1c-43c4-4046-a059-ae694551d06c X-Archives-Hash: 6f2c1e03859165d3ffef20a0acdaec62 commit: 5842245558f2b65bcfd0d4f0fa1739cbbb1cd02e Author: Anthony G. Basile gentoo org> AuthorDate: Sat Nov 26 19:07:10 2011 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Sat Nov 26 19:08:35 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/elfix.git;a=3D= commit;h=3D58422455 scripts/revdep-pax: improved -e switch, mark only for shell PATH --- scripts/revdep-pax | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/scripts/revdep-pax b/scripts/revdep-pax index 827d700..70e8db7 100755 --- a/scripts/revdep-pax +++ b/scripts/revdep-pax @@ -312,6 +312,9 @@ def run_soname(name, verbose, use_soname, executable_= only, mark): print '\tWill mark binaries with %s' % library_flags print for binary in mismatched_binaries: + if executable_only: + if not os.path.dirname(binary) in shell_path: + continue do_marking =3D False while True: ans =3D raw_input('\tSet flags for %s (y/n): ' % binary)