Gentoo Archives: gentoo-commits

From: "Ulrich Mueller (ulm)" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] eselect r817 - in trunk: . modules
Date: Wed, 29 Jun 2011 18:19:22
Message-Id: 20110629181912.EB75020054@flycatcher.gentoo.org
1 Author: ulm
2 Date: 2011-06-29 18:19:12 +0000 (Wed, 29 Jun 2011)
3 New Revision: 817
4
5 Modified:
6 trunk/ChangeLog
7 trunk/modules/env.eselect
8 Log:
9 env.eselect: Call ldconfig with -X to not update symlinks, bug 373343.
10
11 Modified: trunk/ChangeLog
12 ===================================================================
13 --- trunk/ChangeLog 2011-06-29 18:15:52 UTC (rev 816)
14 +++ trunk/ChangeLog 2011-06-29 18:19:12 UTC (rev 817)
15 @@ -1,3 +1,8 @@
16 +2011-06-29 Michał Górny <mgorny@g.o>
17 +
18 + * modules/env.eselect (update_ldcache): Call ldconfig with '-X' to
19 + not update symlinks, bug 373343.
20 +
21 2011-06-25 Brian Harring <ferringb@g.o>
22
23 * libs/package-manager.bash.in (package_manager, envvar)
24
25 Modified: trunk/modules/env.eselect
26 ===================================================================
27 --- trunk/modules/env.eselect 2011-06-29 18:15:52 UTC (rev 816)
28 +++ trunk/modules/env.eselect 2011-06-29 18:19:12 UTC (rev 817)
29 @@ -230,7 +230,7 @@
30 echo "Regenerating ${ROOT}/etc/ld.so.cache..."
31 (
32 cd /
33 - ldconfig ${1} -r "${ROOT:-/}"
34 + ldconfig -X ${1} -r "${ROOT:-/}"
35 )
36 ;;
37 esac