diff options
author | Tim Yamin <plasmaroo@gentoo.org> | 2003-11-30 22:47:20 +0000 |
---|---|---|
committer | Tim Yamin <plasmaroo@gentoo.org> | 2003-11-30 22:47:20 +0000 |
commit | eba860af26518dd4f1d77790356d60978ff3fae0 (patch) | |
tree | a324943f801b92efdd59261a090cea4b1cecaec2 /eclass | |
parent | stop the installer again from removing files (diff) | |
download | gentoo-2-eba860af26518dd4f1d77790356d60978ff3fae0.tar.gz gentoo-2-eba860af26518dd4f1d77790356d60978ff3fae0.tar.bz2 gentoo-2-eba860af26518dd4f1d77790356d60978ff3fae0.zip |
Fix capitalization for the einfo when installing gconf schemas and add a
'echo' to fix spacings and make things look better.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/gnome2.eclass | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/eclass/gnome2.eclass b/eclass/gnome2.eclass index 3b75bcc0b8a8..da81d36ca0b4 100644 --- a/eclass/gnome2.eclass +++ b/eclass/gnome2.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.36 2003/10/26 10:22:51 liquidx Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.37 2003/11/30 22:47:20 plasmaroo Exp $ # # Authors: # Bruce A. Locke <blocke@shivan.org> @@ -81,11 +81,12 @@ gnome2_gconf_install() { then unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL export GCONF_CONFIG_SOURCE=`${ROOT}/usr/bin/gconftool-2 --get-default-source` - einfo "installing gnome2 gconf schemas" + einfo "Installing GNOME 2 GConf Schemas" cat ${ROOT}/var/db/pkg/*/${PN}-${PVR}/CONTENTS | grep "obj /etc/gconf/schemas" | sed 's:obj \([^ ]*\) .*:\1:' |while read F; do echo "DEBUG::gconf install ${F}" ${ROOT}/usr/bin/gconftool-2 --makefile-install-rule ${F} done + echo fi } |