Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/elfix:master commit in: scripts/
Date: Sat, 26 Nov 2011 22:08:56
Message-Id: 184d68204ec67ea30c56921a25011e8128bb6e03.blueness@gentoo
1 commit: 184d68204ec67ea30c56921a25011e8128bb6e03
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Sat Nov 26 22:08:39 2011 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 26 22:08:39 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/elfix.git;a=commit;h=184d6820
7
8 scripts/revdep-pax: fix parameter order for run_soname
9
10 ---
11 scripts/revdep-pax | 6 +++---
12 1 files changed, 3 insertions(+), 3 deletions(-)
13
14 diff --git a/scripts/revdep-pax b/scripts/revdep-pax
15 index a6d2564..fdc96fe 100755
16 --- a/scripts/revdep-pax
17 +++ b/scripts/revdep-pax
18 @@ -262,7 +262,7 @@ def invert_so2library_mappings( so2library_mappings ):
19 return library2soname_mappings
20
21
22 -def run_soname(name, verbose, use_soname, executable_only, mark):
23 +def run_soname(name, verbose, use_soname, mark, executable_only):
24 shell_path = path = os.getenv('PATH').split(':')
25
26 ( forward_linkings, so2library_mappings ) = get_forward_linkings()
27 @@ -415,10 +415,10 @@ def main():
28 elif binary != None:
29 run_binary(binary, verbose, mark)
30 elif soname != None:
31 - run_soname(soname, verbose, executable_only, True, mark)
32 + run_soname(soname, verbose, True, mark, executable_only)
33 elif library != None:
34 library = os.path.realpath(library)
35 - run_soname(library, verbose, executable_only, False, mark)
36 + run_soname(library, verbose, False, mark, executable_only)
37
38 if __name__ == '__main__':
39 main()