slyfox 17/08/08 11:06:10 Modified: README.history Added: 00_all_0001-disable-ldconfig-during-install.patch Log: disable ldconfig run in 9999 patchset
Revision Changes Path 1.2 src/patchsets/glibc/9999/README.history file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/9999/README.history?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/9999/README.history?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/9999/README.history?r1=1.1&r2=1.2 Index: README.history =================================================================== RCS file: /var/cvsroot/gentoo/src/patchsets/glibc/9999/README.history,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- README.history 7 Aug 2017 08:32:12 -0000 1.1 +++ README.history 8 Aug 2017 11:06:09 -0000 1.2 @@ -1,2 +1,4 @@ +2 08 Aug 2017 + + 00_all_0001-disable-ldconfig-during-install.patch 1 07 Aug 2017 + README.history: intentionally empty 1.1 src/patchsets/glibc/9999/00_all_0001-disable-ldconfig-during-install.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/9999/00_all_0001-disable-ldconfig-during-install.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/9999/00_all_0001-disable-ldconfig-during-install.patch?rev=1.1&content-type=text/plain Index: 00_all_0001-disable-ldconfig-during-install.patch =================================================================== >From 1eff1226630034286c3ae5fa1376eb76211690df Mon Sep 17 00:00:00 2001 From: Mike Frysinger <[email protected]> Date: Wed, 1 Apr 2009 02:15:48 -0400 Subject: [PATCH] disable ldconfig during install Do not bother running ldconfig on DESTDIR. It's a waste of time as we won't use the result (portage will rebuild the cache after install). Also, the Gentoo sandbox does not currently catch chroot() behavior so we end up (incorrectly) flagging it as a violation as a write to /etc. http://sourceware.org/ml/libc-alpha/2012-08/msg00118.html https://bugs.gentoo.org/431038 --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 425cb796dba6..bf44b0467282 100644 --- a/Makefile +++ b/Makefile @@ -107,6 +107,7 @@ install-symbolic-link: subdir_install rm -f $(symbolic-link-list) install: +dont-bother-with-destdir: -test ! -x $(elf-objpfx)ldconfig || LC_ALL=C \ $(elf-objpfx)ldconfig $(addprefix -r ,$(install_root)) \ $(slibdir) $(libdir) -- 2.11.0
