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 | 7deb751c4d31fa789ffd1f1f0c7fb8044a5f7a67 (patch) | |
tree | 2a2090cfcef5b79e09d9c2e7e263c77f1de818ae /eclass/gnome2.eclass | |
parent | stop the installer again from removing files (diff) | |
download | historical-7deb751c4d31fa789ffd1f1f0c7fb8044a5f7a67.tar.gz historical-7deb751c4d31fa789ffd1f1f0c7fb8044a5f7a67.tar.bz2 historical-7deb751c4d31fa789ffd1f1f0c7fb8044a5f7a67.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/gnome2.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 } |