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 1QyUAV-0002ot-2Z for garchives@archives.gentoo.org; Tue, 30 Aug 2011 19:40:19 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D6E5721C041; Tue, 30 Aug 2011 19:40:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id A409721C041 for ; Tue, 30 Aug 2011 19:40:11 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 32CC31B415E for ; Tue, 30 Aug 2011 19:40:11 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 885B080040 for ; Tue, 30 Aug 2011 19:40:10 +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: Subject: [gentoo-commits] proj/portage:master commit in: pym/portage/util/ X-VCS-Repository: proj/portage X-VCS-Files: pym/portage/util/env_update.py X-VCS-Directories: pym/portage/util/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: f87d1ef9b0b79b5a9e8f59291e7173363cd7386e Date: Tue, 30 Aug 2011 19:40:10 +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: e129f7f4537b8106b4a5ad0dabc033b6 commit: f87d1ef9b0b79b5a9e8f59291e7173363cd7386e Author: Zac Medico gentoo org> AuthorDate: Tue Aug 30 19:39:51 2011 +0000 Commit: Zac Medico gentoo org> CommitDate: Tue Aug 30 19:39:51 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3Df87d1ef9 env_update: use ldsoconf_update var This fixes an unintended change in behavior from commit a37eb8ebd2fad3f8074490a061f067e2c637f05d, so that the ldconfig call will not be skipped when ld.so.conf has been updated (though ldconfig is still never called when makelinks=3DFalse). --- pym/portage/util/env_update.py | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/pym/portage/util/env_update.py b/pym/portage/util/env_update= .py index 1731663..0d80fa3 100644 --- a/pym/portage/util/env_update.py +++ b/pym/portage/util/env_update.py @@ -231,6 +231,7 @@ def env_update(makelinks=3D1, target_root=3DNone, pre= v_mtimes=3DNone, contents=3DNone, =20 if makelinks and \ not mtime_changed and \ + and not ldsoconf_update and \ contents is not None: libdir_contents_changed =3D False for mypath, mydata in contents.items():