diff options
-rwxr-xr-x | bin/prepstrip | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/prepstrip b/bin/prepstrip index c8a648a36..a837d0a17 100755 --- a/bin/prepstrip +++ b/bin/prepstrip @@ -15,7 +15,7 @@ type -p -- ${STRIP} > /dev/null || STRIP=strip OBJCOPY=${OBJCOPY:-${CHOST}-objcopy} type -p -- ${OBJCOPY} > /dev/null || OBJCOPY=objcopy -PORTAGE_STRIP_FLAGS=${PORTAGE_STRIP_FLAGS:---strip-unneeded} +export PORTAGE_STRIP_FLAGS=${PORTAGE_STRIP_FLAGS:---strip-unneeded} banner=1 @@ -31,7 +31,7 @@ save_elf_debug() { mkdir -p $(dirname "${y}") ${OBJCOPY} --only-keep-debug "${x}" "${y}" ${OBJCOPY} --add-gnu-debuglink="${y}" "${x}" - chmod a-x "${y}" + chmod a-x,o-w "${y}" [[ " ${FEATURES} " != *" installsources "* ]] && return 0 |