summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--subr/pkg_install_files.subr2
1 files changed, 1 insertions, 1 deletions
diff --git a/subr/pkg_install_files.subr b/subr/pkg_install_files.subr
index 55d79cba..19c1a15b 100644
--- a/subr/pkg_install_files.subr
+++ b/subr/pkg_install_files.subr
@@ -32,7 +32,7 @@ pkgp_install_files_strip() {
return 0;
fi;
for _bin_path in $(find "${_tree_root}" -perm /a=x -type f); do
- if objdump -sj .debug_info "${_bin_path}" >/dev/null 2>&1; then
+ if objdump -sj .debug_frame -j .debug_info "${_bin_path}" >/dev/null 2>&1; then
rtl_log_msg info "Stripping %s..." "${_bin_path}";
if ! "${PKG_TARGET}-strip" "${_bin_path}"; then
return 1;