From: Zac Medico Date: Sat, 24 Oct 2009 07:05:51 +0000 (-0000) Subject: Use find with -print0 for absolute safety. (trunk r14707) X-Git-Tag: v2.1.7.2~12 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=d7ddc38cd333b68cc8fb1ad4216feec22ac1423b;p=portage.git Use find with -print0 for absolute safety. (trunk r14707) svn path=/main/branches/2.1.7/; revision=14716 --- diff --git a/bin/ebuild-helpers/prepstrip b/bin/ebuild-helpers/prepstrip index 0f97ca05a..13cd5a6b8 100755 --- a/bin/ebuild-helpers/prepstrip +++ b/bin/ebuild-helpers/prepstrip @@ -187,8 +187,8 @@ then # Preserve directory structure. # Needed after running save_elf_sources. # https://bugzilla.redhat.com/show_bug.cgi?id=444310 - while read -r emptydir + while read -r -d $'\0' emptydir do touch "$emptydir"/.keepdir - done < <(find "${D}${prepstrip_sources_dir}/" -type d -empty) + done < <(find "${D}${prepstrip_sources_dir}/" -type d -empty -print0) fi