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 1RUNb2-00044V-9N for garchives@archives.gentoo.org; Sat, 26 Nov 2011 19:07:32 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 75E9E21C0B2; Sat, 26 Nov 2011 19:07:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 463BD21C0B2 for ; Sat, 26 Nov 2011 19:07:20 +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 BB64F1B4027 for ; Sat, 26 Nov 2011 19:07:19 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 1F25B80042 for ; Sat, 26 Nov 2011 19:07:19 +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: 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: d2886d4890893c5b11dd04ea912dfd36f67dc308 Date: Sat, 26 Nov 2011 19:07:19 +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: 6c438978-cf49-4d77-bf97-43a3887118d8 X-Archives-Hash: 1fa82ce0587f41c5a3c1f81f2a397065 commit: d2886d4890893c5b11dd04ea912dfd36f67dc308 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:07:10 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/elfix.git;a=3D= commit;h=3Dd2886d48 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)