diff options
author | Mike Frysinger <vapier@gentoo.org> | 2010-11-28 22:10:13 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-11-28 22:13:05 +0100 |
commit | 66254843a57420cf46899b71526fe2481ca7a554 (patch) | |
tree | b272268a36a185e1756d7e13eb886ff29b943b49 | |
parent | 1fbd9ef8132c250d3f4c2e575cdc99a08f73d090 (diff) | |
download | buildroot-novena-66254843a57420cf46899b71526fe2481ca7a554.tar.gz buildroot-novena-66254843a57420cf46899b71526fe2481ca7a554.zip |
target-finalize: libtread_db: support nonstd toolchain setups
Certain toolchain configs (E.G. on blackfin), don't use symlinks, so the
file name to match is the actual SONAME (.so.*). Support these toolchains
as well.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -418,7 +418,7 @@ ifneq ($(BR2_HAVE_DOCUMENTATION),y) rm -rf $(TARGET_DIR)/usr/share/gtk-doc -rmdir $(TARGET_DIR)/usr/share 2>/dev/null 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) |