From 0f062288df103dd217c5201c38b7b210fb8b2491 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Fri, 11 Jan 2008 05:40:55 +0000 Subject: Bug#204668 - Fix WORKDIR quoting in econf() when updating config.guess and config.sub. (trunk r9162) svn path=/main/branches/2.1.2/; revision=9171 --- bin/ebuild.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/bin/ebuild.sh b/bin/ebuild.sh index 56347fc9d..ef21d222d 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -409,9 +409,11 @@ econf() { fi if [ -x "${ECONF_SOURCE}/configure" ]; then if [ -e /usr/share/gnuconfig/ ]; then - for x in $(find "${WORKDIR}" -type f '(' -name config.guess -o -name config.sub ')') ; do + find "${WORKDIR}" -type f '(' \ + -name config.guess -o -name config.sub ')' -print0 | \ + while read -d $'\0' x ; do vecho " * econf: updating ${x/${WORKDIR}\/} with /usr/share/gnuconfig/${x##*/}" - cp -f /usr/share/gnuconfig/${x##*/} ${x} + cp -f /usr/share/gnuconfig/"${x##*/}" "${x}" done fi -- cgit v1.2.3-1-g7c22