diff options
author | John N. Laliberte <allanonjl@gentoo.org> | 2006-10-31 17:08:44 +0000 |
---|---|---|
committer | John N. Laliberte <allanonjl@gentoo.org> | 2006-10-31 17:08:44 +0000 |
commit | bcca0749ad1b32732234a8df7624cb0ae6fb6124 (patch) | |
tree | 5db2b0b127aed98f3ce2bdff8ccaca1ef88c4fcd /eclass | |
parent | Version bump. (diff) | |
download | gentoo-2-bcca0749ad1b32732234a8df7624cb0ae6fb6124.tar.gz gentoo-2-bcca0749ad1b32732234a8df7624cb0ae6fb6124.tar.bz2 gentoo-2-bcca0749ad1b32732234a8df7624cb0ae6fb6124.zip |
add in a \b after .schemas to be even safer, thanks to steev
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/gnome2.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/gnome2.eclass b/eclass/gnome2.eclass index 60d45423c86a..e38fcaa60a70 100644 --- a/eclass/gnome2.eclass +++ b/eclass/gnome2.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/gnome2.eclass,v 1.74 2006/10/31 16:11:09 allanonjl Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.75 2006/10/31 17:08:44 allanonjl Exp $ # GNOME 2 ECLASS inherit libtool gnome.org debug fdo-mime eutils @@ -112,7 +112,7 @@ gnome2_gconf_install() { local contents="${ROOT}/var/db/pkg/*/${PN}-${PVR}/CONTENTS" - for F in $(grep "^obj /etc/gconf/schemas/.\+\.schemas" ${contents} | gawk '{print $2}' ); do + for F in $(grep "^obj /etc/gconf/schemas/.\+\.schemas\b" ${contents} | gawk '{print $2}' ); do if [[ -e "${F}" ]]; then # echo "DEBUG::gconf install ${F}" ${GCONFTOOL_BIN} --makefile-install-rule ${F} 1>/dev/null |