diff options
author | Zac Medico <zmedico@gentoo.org> | 2006-12-28 21:14:08 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2006-12-28 21:14:08 +0000 |
commit | 8d7572d440fc10f80271c4c6ad7795b9d8ad352a (patch) | |
tree | 4bddc32852e9e426d38577e70ab0133a8519c015 | |
parent | 45a999ee823f6ffe243f3a292d2de4d559a18b29 (diff) | |
download | portage-8d7572d440fc10f80271c4c6ad7795b9d8ad352a.tar.gz portage-8d7572d440fc10f80271c4c6ad7795b9d8ad352a.tar.bz2 portage-8d7572d440fc10f80271c4c6ad7795b9d8ad352a.zip |
For bug #159252, don't preserve file attributes when copying files for installsources. Thanks to Ed Catmur <ed@catmur.co.uk> for this patch.
svn path=/main/trunk/; revision=5408
-rwxr-xr-x | bin/prepstrip | 2 |
1 files changed, 1 insertions, 1 deletions
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 |