Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] target-finalize: fix libthread_db strip fix
@ 2010-11-27 22:43 Mike Frysinger
  2010-11-28 10:09 ` Peter Korsgaard
  0 siblings, 1 reply; 15+ messages in thread
From: Mike Frysinger @ 2010-11-27 22:43 UTC (permalink / raw)
  To: buildroot

The attempt to fix libthread_db for some targets broke others.  If you
want to match more libs, you shouldn't do so by breaking others.  The
correct SONAME is libthread_db.so.#.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
---
 Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/Makefile b/Makefile
index 921630e..3798905 100644
--- a/Makefile
+++ b/Makefile
@@ -426,7 +426,7 @@ endif
 ifeq ($(BR2_INSTALL_ELF_CLEANUP),y)
 	PATH="$(HOST_PATH)" toolchain/trim-libs.sh "$(TARGET_DIR)"
 endif
-	find $(TARGET_DIR) -type f -perm +111 '!' -name 'libthread_db*.so' | \
+	find $(TARGET_DIR) -type f -perm +111 '!' -name 'libthread_db*.so*' | \
 		xargs $(STRIPCMD) 2>/dev/null || true
 	find $(TARGET_DIR)/lib/modules -type f -name '*.ko' | \
 		xargs -r $(STRIPCMD) $(STRIP_STRIP_UNNEEDED)
-- 
1.7.3.2

^ permalink raw reply related	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2010-11-29 23:45 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-11-27 22:43 [Buildroot] [PATCH] target-finalize: fix libthread_db strip fix Mike Frysinger
2010-11-28 10:09 ` Peter Korsgaard
2010-11-28 17:36   ` Mike Frysinger
2010-11-28 21:14     ` Peter Korsgaard
2010-11-28 22:13       ` Mike Frysinger
2010-11-29  7:53         ` Peter Korsgaard
2010-11-29 11:21           ` Mike Frysinger
2010-11-29 11:41             ` Peter Korsgaard
2010-11-29 20:44               ` Mike Frysinger
2010-11-29 21:14                 ` Peter Korsgaard
2010-11-29 23:45                   ` Mike Frysinger
2010-11-28 22:25       ` Mike Frysinger
2010-11-29  7:57         ` Peter Korsgaard
2010-11-29 11:18           ` Mike Frysinger
2010-11-29 11:38             ` Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox