diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-04-01 02:15:48 -0400 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2019-08-03 01:07:05 +0200 |
commit | f8fe6754f8d98e22615747cbb2654bb732fff2db (patch) | |
tree | 8ea8c307bf774460c8a175cf81c4e722e876a8e1 | |
parent | malloc: Remove unwanted leading whitespace in malloc_info [BZ #24867] (diff) | |
download | glibc-f8fe6754f8d98e22615747cbb2654bb732fff2db.tar.gz glibc-f8fe6754f8d98e22615747cbb2654bb732fff2db.tar.bz2 glibc-f8fe6754f8d98e22615747cbb2654bb732fff2db.zip |
Gentoo: 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
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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) |