diff options
author | 2004-07-09 19:22:40 +0000 | |
---|---|---|
committer | 2004-07-09 19:22:40 +0000 | |
commit | 166fd8c831d40a9cc6909e32ac3c571b3e6e0f75 (patch) | |
tree | c56a2a2516871d11ae974cf85a4ee3df4291ec4b /eclass | |
parent | Provide dev-util/scons. (diff) | |
download | historical-166fd8c831d40a9cc6909e32ac3c571b3e6e0f75.tar.gz historical-166fd8c831d40a9cc6909e32ac3c571b3e6e0f75.tar.bz2 historical-166fd8c831d40a9cc6909e32ac3c571b3e6e0f75.zip |
fix bad quoting which broke dgs build due to multiple elements in targetlist
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/gnuconfig.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/gnuconfig.eclass b/eclass/gnuconfig.eclass index f6ce8d5a3fa3..8eccd35f48d8 100644 --- a/eclass/gnuconfig.eclass +++ b/eclass/gnuconfig.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gnuconfig.eclass,v 1.21 2004/07/07 16:14:02 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gnuconfig.eclass,v 1.22 2004/07/09 19:22:40 agriffis Exp $ # # Author: Will Woods <wwoods@gentoo.org> # @@ -59,7 +59,7 @@ gnuconfig_do_update() { fi targetlist=`find "${startdir}" -name "${file}"` if [ -n "$targetlist" ] ; then - for target in "$targetlist"; do + for target in $targetlist; do einfo " Updating ${target/$startdir\//}" cp -f ${configsubs_dir}/${file} "${target}" eend $? |