From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 94006138BF3 for ; Tue, 18 Feb 2014 18:51:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0E774E0CF0; Tue, 18 Feb 2014 18:51:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9D8D1E0CF0 for ; Tue, 18 Feb 2014 18:51:29 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8F89333EEF2 for ; Tue, 18 Feb 2014 18:51:28 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 4682C1872B for ; Tue, 18 Feb 2014 18:51:27 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1392746880.ddabed641fcf824d3f27e068674145211fa530dd.dol-sen@gentoo> Subject: [gentoo-commits] proj/gentoolkit:gentoolkit commit in: pym/gentoolkit/revdep_rebuild/ X-VCS-Repository: proj/gentoolkit X-VCS-Files: pym/gentoolkit/revdep_rebuild/analyse.py X-VCS-Directories: pym/gentoolkit/revdep_rebuild/ X-VCS-Committer: dol-sen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: ddabed641fcf824d3f27e068674145211fa530dd X-VCS-Branch: gentoolkit Date: Tue, 18 Feb 2014 18:51:27 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: e36615d8-c576-4a51-af68-13e03ccf5cd6 X-Archives-Hash: e307c5d79656c4e9b850a7b59188468e commit: ddabed641fcf824d3f27e068674145211fa530dd Author: Brian Dolbec gentoo org> AuthorDate: Tue Feb 18 18:08:00 2014 +0000 Commit: Brian Dolbec gmail com> CommitDate: Tue Feb 18 18:08:00 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gentoolkit.git;a=commit;h=ddabed64 revdep_rebuild/analyse.py: Remove the -n option from the scanelf parameters. It is not needed when using the -F option. --- pym/gentoolkit/revdep_rebuild/analyse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/gentoolkit/revdep_rebuild/analyse.py b/pym/gentoolkit/revdep_rebuild/analyse.py index 0c22b0e..64aca04 100644 --- a/pym/gentoolkit/revdep_rebuild/analyse.py +++ b/pym/gentoolkit/revdep_rebuild/analyse.py @@ -30,7 +30,7 @@ def scan_files(libs_and_bins, cmd_max_args, logger): ''' stime = current_milli_time() scanned_files = {} # {bits: {soname: (filename, needed), ...}, ...} - lines = scan(['-nBF', '%F %f %S %n %M'], + lines = scan(['-BF', '%F %f %S %n %M'], libs_and_bins, cmd_max_args, logger) ftime = current_milli_time() logger.debug("\tscan_files(); total time to get scanelf data is "