From: Zac Medico Date: Thu, 28 Dec 2006 21:14:08 +0000 (-0000) Subject: For bug #159252, don't preserve file attributes when copying files for installsources... X-Git-Tag: v2.1.2~204 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=8d7572d440fc10f80271c4c6ad7795b9d8ad352a;p=portage.git For bug #159252, don't preserve file attributes when copying files for installsources. Thanks to Ed Catmur for this patch. svn path=/main/trunk/; revision=5408 --- diff --git a/bin/prepstrip b/bin/prepstrip index 75d973e07..c9fc10e98 100755 --- a/bin/prepstrip +++ b/bin/prepstrip @@ -33,7 +33,7 @@ save_elf_debug() { 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 | \ - rsync -aL0 --files-from=- "${WORKDIR}/" "${D}${sources_dir}/" ) + rsync -rtL0 --files-from=- "${WORKDIR}/" "${D}${sources_dir}/" ) fi fi