From aac4d8aed3acc6e164798122423422a4f03030be Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Thu, 15 Dec 2005 04:51:44 +0000 Subject: Bug 115519 by Diego Petteno: Fix ldconfig command ordering, add dragonfly support svn path=/main/trunk/; revision=2372 --- pym/portage.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pym/portage.py b/pym/portage.py index d0734b458..52a048053 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -669,10 +669,10 @@ def env_update(makelinks=1): commands.getstatusoutput("cd / ; /sbin/ldconfig -r "+root) else: commands.getstatusoutput("cd / ; /sbin/ldconfig -X -r "+root) - elif ostype == "FreeBSD": + elif ostype == "FreeBSD" or ostype == "DragonFly": if (ld_cache_update): writemsg(">>> Regenerating "+str(root)+"var/run/ld-elf.so.hints...\n") - commands.getstatusoutput("cd / ; /sbin/ldconfig -i -elf -f "+str(root)+"var/run/ld-elf.so.hints "+str(root)+"etc/ld.so.conf") + commands.getstatusoutput("cd / ; /sbin/ldconfig -elf -i -f "+str(root)+"var/run/ld-elf.so.hints "+str(root)+"etc/ld.so.conf") del specials["LDPATH"] -- cgit v1.2.3-1-g7c22