1From b139e03ac2f72e644e547c7ee9b1514383af4d97 Mon Sep 17 00:00:00 2001 2From: Andrei Dinu <andrei.adrianx.dinu@intel.com> 3Date: Wed, 30 Jan 2013 15:22:04 +0200 4Subject: [PATCH] When /etc/ld.so.cache is writeable by user running bitbake 5 then it creates invalid cache (in my case libstdc++.so 6 cannot be found after building zlib(-native) and I have to 7 call touch */libstdc++.so && /sbin/ldconfig to fix it. 8 9So remove ldconfig call from make install-libs 10 11Patch authored by Martin Jansa. 12 13Upstream-Status: Inappropriate [disable feature] 14 15Signed-off-by: Scott Garman <scott.a.garman@intel.com> 16Signed-off-by: Andrei Dinu <andrei.adrianx.dinu@intel.com> 17--- 18 lib/Makefile.elf-lib | 3 --- 19 1 file changed, 3 deletions(-) 20 21diff --git a/lib/Makefile.elf-lib b/lib/Makefile.elf-lib 22index 78479d3..4a4a5ac 100644 23--- a/lib/Makefile.elf-lib 24+++ b/lib/Makefile.elf-lib 25@@ -50,8 +50,6 @@ install-shlibs install:: $(ELF_LIB) installdirs-elf-lib $(DEP_INSTALL_SYMLINK) 26 $(E) " SYMLINK $(libdir)/$(ELF_IMAGE).so" 27 $(Q) $(INSTALL_SYMLINK) $(ELF_INSTALL_DIR)/$(ELF_SONAME) \ 28 $(libdir)/$(ELF_IMAGE).so $(DESTDIR) 29- $(E) " LDCONFIG" 30- $(Q) -$(LDCONFIG) 31 32 install-strip: install 33 $(E) " STRIP-LIB $(ELF_INSTALL_DIR)/$(ELF_LIB)" 34@@ -67,7 +65,6 @@ uninstall-shlibs uninstall:: 35 $(RM) -f $(DESTDIR)$(ELF_INSTALL_DIR)/$(ELF_LIB) \ 36 $(DESTDIR)$(ELF_INSTALL_DIR)/$(ELF_SONAME) \ 37 $(DESTDIR)$(libdir)/$(ELF_IMAGE).so 38- -$(LDCONFIG) 39 40 clean:: 41 $(RM) -rf elfshared 42-- 431.7.9.5 44 45