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 C3744138E3F for ; Wed, 19 Feb 2014 03:14:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C8244E0B83; Wed, 19 Feb 2014 03:14:43 +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 88FA8E0B83 for ; Wed, 19 Feb 2014 03:14:42 +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 9C7F333FA2A for ; Wed, 19 Feb 2014 03:14:41 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 88EA1188C7 for ; Wed, 19 Feb 2014 03:14:39 +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: <1392765019.3ecac0c4a444eca19f19542db19a8061d796a02f.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: 3ecac0c4a444eca19f19542db19a8061d796a02f X-VCS-Branch: gentoolkit Date: Wed, 19 Feb 2014 03:14:39 +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: cc8b7896-40e4-46cb-94bf-356dd66bf9fd X-Archives-Hash: 92169c13f0ae13ebbfb4f71056b373c6 commit: 3ecac0c4a444eca19f19542db19a8061d796a02f Author: Brian Dolbec gentoo org> AuthorDate: Tue Feb 18 22:30:37 2014 +0000 Commit: Brian Dolbec gmail com> CommitDate: Tue Feb 18 23:10:19 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gentoolkit.git;a=commit;h=3ecac0c4 revdep_rebuild/analyse.py: No need to convert to a set before updating masked_directories. --- pym/gentoolkit/revdep_rebuild/analyse.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/pym/gentoolkit/revdep_rebuild/analyse.py b/pym/gentoolkit/revdep_rebuild/analyse.py index 09d88d6..82393a6 100644 --- a/pym/gentoolkit/revdep_rebuild/analyse.py +++ b/pym/gentoolkit/revdep_rebuild/analyse.py @@ -266,12 +266,11 @@ def analyse(settings, logger, libraries=None, la_libraries=None, parse_revdep_config(settings['REVDEP_CONFDIR']) lib_dirs.update(ld) bin_dirs.update(ld) - masked_dirs.update( - set([ - '/lib/modules', - '/lib32/modules', - '/lib64/modules', - ]) + masked_dirs.update([ + '/lib/modules', + '/lib32/modules', + '/lib64/modules', + ] ) if '64' not in searchbits: masked_dirs.update(['/lib64', '/usr/lib64'])