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 1Qc6QU-00037l-H5 for garchives@archives.gentoo.org; Thu, 30 Jun 2011 01:52:19 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DA2641C022; Thu, 30 Jun 2011 01:52:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id A8DF01C022 for ; Thu, 30 Jun 2011 01:52:10 +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 3D3CC1B4016 for ; Thu, 30 Jun 2011 01:52:10 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 242D48003C for ; Thu, 30 Jun 2011 01:52:09 +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: a1d16a01c4ca0b2b196e9256b4f309157c5545fd Date: Thu, 30 Jun 2011 01:52:09 +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: 524c3985cb7e10a69a75c7d4cee913de commit: a1d16a01c4ca0b2b196e9256b4f309157c5545fd Author: Zac Medico gentoo org> AuthorDate: Thu Jun 30 01:50:54 2011 +0000 Commit: Zac Medico gentoo org> CommitDate: Thu Jun 30 01:50:54 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3Da1d16a01 env_update: document ldconfig -X for bug #373341 --- pym/portage/util/env_update.py | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-) diff --git a/pym/portage/util/env_update.py b/pym/portage/util/env_update= .py index a82afdf..3e295f0 100644 --- a/pym/portage/util/env_update.py +++ b/pym/portage/util/env_update.py @@ -27,7 +27,14 @@ def env_update(makelinks=3D1, target_root=3DNone, prev= _mtimes=3DNone, contents=3DNone, env=3DNone, writemsg_level=3DNone): """ Parse /etc/env.d and use it to generate /etc/profile.env, csh.env, - ld.so.conf, and prelink.conf. Finally, run ldconfig. + ld.so.conf, and prelink.conf. Finally, run ldconfig. When ldconfig is + called, its -X option will be used in order to avoid potential + interference with installed soname symlinks that are required for + correct operation of FEATURES=3Dpreserve-libs for downgrade operations. + It's not necessary for ldconfig to create soname symlinks, since + portage will use NEEDED.ELF.2 data to automatically create them + after src_install if they happen to be missing. + @param makelinks: True if ldconfig should be called, False otherwise @param target_root: root that is passed to the ldconfig -r option, defaults to portage.settings["ROOT"]. @type target_root: String (Path)