From: Zac Medico Date: Fri, 23 Feb 2007 23:21:28 +0000 (-0000) Subject: Filter paths matching '/$' that come from debugedit. Thanks to Ed Catmur... X-Git-Tag: v2.1.2.1~34 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5d0f42d74de3e311998dc6b225f30d06b37f704f;p=portage.git Filter paths matching '/$' that come from debugedit. Thanks to Ed Catmur for this patch from bug #165342. svn path=/main/branches/2.1.2/; revision=6061 --- diff --git a/bin/prepstrip b/bin/prepstrip index 1ff4c0d28..d903a649e 100755 --- a/bin/prepstrip +++ b/bin/prepstrip @@ -32,7 +32,8 @@ save_elf_debug() { -l "${T}"/debug.sources "${x}" if [[ -s ${T}/debug.sources ]] ; then [[ -d ${D}${sources_dir} ]] || mkdir -p "${D}${sources_dir}" - cat "${T}"/debug.sources | (cd "${WORKDIR}"; LANG=C sort -z -u | \ + grep -zv '/$' "${T}"/debug.sources | \ + (cd "${WORKDIR}"; LANG=C sort -z -u | \ rsync -rtL0 --files-from=- "${WORKDIR}/" "${D}${sources_dir}/" ) fi fi