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 1QJAw0-0000Sj-Ce for garchives@archives.gentoo.org; Sun, 08 May 2011 20:50:37 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 974591C05E; Sun, 8 May 2011 20:50:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 69E8F1C05E for ; Sun, 8 May 2011 20:50:14 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 26FCC1BC019 for ; Sun, 8 May 2011 20:50:14 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 85E197448A for ; Sun, 8 May 2011 20:50:13 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <4a77dba61d86ddf23ad65d6aeefc184cc3fb150f.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:2.1.9 commit in: pym/portage/dbapi/ X-VCS-Repository: proj/portage X-VCS-Files: pym/portage/dbapi/vartree.py X-VCS-Directories: pym/portage/dbapi/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 4a77dba61d86ddf23ad65d6aeefc184cc3fb150f Date: Sun, 8 May 2011 20:50:13 +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: X-Archives-Hash: ca45eb67294bb36644c28e0090aaa270 commit: 4a77dba61d86ddf23ad65d6aeefc184cc3fb150f Author: Zac Medico gentoo org> AuthorDate: Sun May 8 19:31:07 2011 +0000 Commit: Zac Medico gentoo org> CommitDate: Sun May 8 19:36:14 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D4a77dba6 treewalk: always initialize "needed" --- pym/portage/dbapi/vartree.py | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py index 7bef2fc..156defc 100644 --- a/pym/portage/dbapi/vartree.py +++ b/pym/portage/dbapi/vartree.py @@ -3292,9 +3292,9 @@ class dblink(object): linkmap =3D self.vartree.dbapi._linkmap plib_registry =3D self.vartree.dbapi._plib_registry include_file =3D None - if linkmap is None or plib_registry is None: - preserve_paths =3D None - else: + preserve_paths =3D None + needed =3D None + if not (linkmap is None or plib_registry is None): plib_registry.lock() try: plib_registry.load()