On Tue, 28 Jun 2011 10:48:48 +0200 Michał Górny <[email protected]> wrote:
> I have created a patch which makes 'env-update' always pass '-X' to > ldconfig, to not let it update the symlinks in system-wide libdirs. > I'm testing it right now to see if it doesn't cause any breakage. And, as always, forgot to attach it. Here it goes. -- Best regards, Michał Górny
From 268d114e90cf3d20a816e194a5d8711e65060983 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= <[email protected]> Date: Tue, 28 Jun 2011 10:10:36 +0200 Subject: [PATCH] Don't ever recreate root .so links on env-update. We install .so symlinks with packages, so let's use that instead of letting ldconfig update them for no reason. This should fix problems with preserved-libs. --- man/env-update.1 | 3 +-- pym/portage/util/env_update.py | 5 +---- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/pym/portage/util/env_update.py b/pym/portage/util/env_update.py index a89f2e2..a82afdf 100644 --- a/pym/portage/util/env_update.py +++ b/pym/portage/util/env_update.py @@ -248,10 +248,7 @@ def env_update(makelinks=1, target_root=None, prev_mtimes=None, contents=None, # we can safely create links. writemsg_level(_(">>> Regenerating %setc/ld.so.cache...\n") % \ (target_root,)) - if makelinks: - os.system("cd / ; %s -r '%s'" % (ldconfig, target_root)) - else: - os.system("cd / ; %s -X -r '%s'" % (ldconfig, target_root)) + os.system("cd / ; %s -X -r '%s'" % (ldconfig, target_root)) elif ostype in ("FreeBSD","DragonFly"): writemsg_level(_(">>> Regenerating %svar/run/ld-elf.so.hints...\n") % \ target_root) -- 1.7.6
signature.asc
Description: PGP signature
