mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-27 13:16:35 +00:00
target-finalize: do not strip libthread_db
Fix previous commit not to strip libthread_db library. In the previous commit the wildcard was incorrectly matching the symbolic link instead of the real library file. Signed-off-by: Javier Viguera <javier.viguera@digi.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
37f64ed015
commit
69b2cc76b3
2
Makefile
2
Makefile
@ -418,7 +418,7 @@ ifneq ($(BR2_HAVE_DOCUMENTATION),y)
|
|||||||
rm -rf $(TARGET_DIR)/usr/share/gtk-doc
|
rm -rf $(TARGET_DIR)/usr/share/gtk-doc
|
||||||
-rmdir $(TARGET_DIR)/usr/share 2>/dev/null
|
-rmdir $(TARGET_DIR)/usr/share 2>/dev/null
|
||||||
endif
|
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
|
xargs $(STRIPCMD) 2>/dev/null || true
|
||||||
find $(TARGET_DIR)/lib/modules -type f -name '*.ko' | \
|
find $(TARGET_DIR)/lib/modules -type f -name '*.ko' | \
|
||||||
xargs -r $(STRIPCMD) $(STRIP_STRIP_UNNEEDED)
|
xargs -r $(STRIPCMD) $(STRIP_STRIP_UNNEEDED)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user