diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-07-09 19:22:40 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-07-09 19:22:40 +0000 |
commit | 284af638f33e5a95226afe6090b9a4dcfc3178f3 (patch) | |
tree | c8673fb830be113246e98b429a4ae04119527ddb /eclass/gnuconfig.eclass | |
parent | Provide dev-util/scons. (Manifest recommit) (diff) | |
download | gentoo-2-284af638f33e5a95226afe6090b9a4dcfc3178f3.tar.gz gentoo-2-284af638f33e5a95226afe6090b9a4dcfc3178f3.tar.bz2 gentoo-2-284af638f33e5a95226afe6090b9a4dcfc3178f3.zip |
fix bad quoting which broke dgs build due to multiple elements in targetlist
Diffstat (limited to 'eclass/gnuconfig.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 $? |