From: Mike Frysinger Date: Tue, 11 Oct 2011 17:28:45 +0000 (-0400) Subject: prepstrip: make sure eu-strip embeds right filename X-Git-Tag: v2.2.0_alpha67~3 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=86e3ed5b8d1efdd439415cb3dec2905e5de058dc;p=portage.git prepstrip: make sure eu-strip embeds right filename Signed-off-by: Mike Frysinger --- diff --git a/bin/ebuild-helpers/prepstrip b/bin/ebuild-helpers/prepstrip index 7f158c29d..8c2ca4839 100755 --- a/bin/ebuild-helpers/prepstrip +++ b/bin/ebuild-helpers/prepstrip @@ -146,7 +146,10 @@ process_elf() { if ${strip_this} ; then # see if we can split & strip at the same time if [[ -n ${SPLIT_STRIP_FLAGS} ]] ; then - ${STRIP} ${strip_flags} -f "${T}"/prepstrip.split.debug "${x}" + ${STRIP} ${strip_flags} \ + -f "${T}"/prepstrip.split.debug \ + -F "${x##*/}.debug" \ + "${x}" save_elf_debug "${x}" else save_elf_debug "${x}"