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 1RUQQa-0007bw-Ef for garchives@archives.gentoo.org; Sat, 26 Nov 2011 22:08:56 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3C1F821C022; Sat, 26 Nov 2011 22:08:49 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 07FFC21C022 for ; Sat, 26 Nov 2011 22:08:48 +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 823481B402A for ; Sat, 26 Nov 2011 22:08:48 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 9AF4E80042 for ; Sat, 26 Nov 2011 22:08:47 +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: <184d68204ec67ea30c56921a25011e8128bb6e03.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: 184d68204ec67ea30c56921a25011e8128bb6e03 Date: Sat, 26 Nov 2011 22:08:47 +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: cfe4db45-c18e-48fd-9971-d4b808ea4621 X-Archives-Hash: 1ce388a76a3836c725ebf3b04cf44e47 commit: 184d68204ec67ea30c56921a25011e8128bb6e03 Author: Anthony G. Basile gentoo org> AuthorDate: Sat Nov 26 22:08:39 2011 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Sat Nov 26 22:08:39 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/elfix.git;a=3D= commit;h=3D184d6820 scripts/revdep-pax: fix parameter order for run_soname --- scripts/revdep-pax | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/revdep-pax b/scripts/revdep-pax index a6d2564..fdc96fe 100755 --- a/scripts/revdep-pax +++ b/scripts/revdep-pax @@ -262,7 +262,7 @@ def invert_so2library_mappings( so2library_mappings )= : return library2soname_mappings =20 =20 -def run_soname(name, verbose, use_soname, executable_only, mark): +def run_soname(name, verbose, use_soname, mark, executable_only): shell_path =3D path =3D os.getenv('PATH').split(':') =20 ( forward_linkings, so2library_mappings ) =3D get_forward_linkings() @@ -415,10 +415,10 @@ def main(): elif binary !=3D None: run_binary(binary, verbose, mark) elif soname !=3D None: - run_soname(soname, verbose, executable_only, True, mark) + run_soname(soname, verbose, True, mark, executable_only) elif library !=3D None: library =3D os.path.realpath(library) - run_soname(library, verbose, executable_only, False, mark) + run_soname(library, verbose, False, mark, executable_only) =20 if __name__ =3D=3D '__main__': main()