diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-04-24 02:22:57 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-04-24 02:22:57 +0000 |
commit | 8969f8c5e3ba7cd14a951066e1daf78de267ae48 (patch) | |
tree | e8c40f9179fa93fd86e716709710f5d15b08e578 /eclass/gnuconfig.eclass | |
parent | Version bump, fixes gtk deprecation errors. (Manifest recommit) (diff) | |
download | gentoo-2-8969f8c5e3ba7cd14a951066e1daf78de267ae48.tar.gz gentoo-2-8969f8c5e3ba7cd14a951066e1daf78de267ae48.tar.bz2 gentoo-2-8969f8c5e3ba7cd14a951066e1daf78de267ae48.zip |
and add a visual touchup
Diffstat (limited to 'eclass/gnuconfig.eclass')
-rw-r--r-- | eclass/gnuconfig.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/gnuconfig.eclass b/eclass/gnuconfig.eclass index ff1a3105f2ce..4ce565a4b587 100644 --- a/eclass/gnuconfig.eclass +++ b/eclass/gnuconfig.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gnuconfig.eclass,v 1.15 2004/04/24 02:16:28 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gnuconfig.eclass,v 1.16 2004/04/24 02:22:57 vapier Exp $ # # Author: Will Woods <wwoods@gentoo.org> # @@ -51,12 +51,12 @@ gnuconfig_do_update() { targetlist=`find ${S} -name "${file}"` if [ -n "$targetlist" ] ; then for target in $targetlist; do - einfo "Updating ${target/$S\//}" + einfo " Updating ${target/$S\//}" cp -f ${configsubs_dir}/${file} ${target} eend $! done else - ewarn "No ${file} found in ${S}, skipping.." + ewarn " No ${file} found in ${S}, skipping.." fi done } |