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 | 66d5b48af0b059b3171c874424672d94dc303f8e (patch) | |
tree | b0d830d6d92cdfad41dd5b1d499ce2ff8af655c8 /eclass | |
parent | Version bump. (diff) | |
download | historical-66d5b48af0b059b3171c874424672d94dc303f8e.tar.gz historical-66d5b48af0b059b3171c874424672d94dc303f8e.tar.bz2 historical-66d5b48af0b059b3171c874424672d94dc303f8e.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 |