diff options
author | Daniel Gryniewicz <dang@gentoo.org> | 2007-06-14 20:46:18 +0000 |
---|---|---|
committer | Daniel Gryniewicz <dang@gentoo.org> | 2007-06-14 20:46:18 +0000 |
commit | e81ed0cc571e130fc128bbb22a9ca9b765d331a1 (patch) | |
tree | 7d26cbd69cf2a325f949fc169ac6259e0a2256d9 /eclass/gnome2-utils.eclass | |
parent | ppc stable, bug #181965 (diff) | |
download | historical-e81ed0cc571e130fc128bbb22a9ca9b765d331a1.tar.gz historical-e81ed0cc571e130fc128bbb22a9ca9b765d331a1.tar.bz2 historical-e81ed0cc571e130fc128bbb22a9ca9b765d331a1.zip |
Change pidof to pgrep; bug #182044
Diffstat (limited to 'eclass/gnome2-utils.eclass')
-rw-r--r-- | eclass/gnome2-utils.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/gnome2-utils.eclass b/eclass/gnome2-utils.eclass index f83163ff8451..fd773a09915b 100644 --- a/eclass/gnome2-utils.eclass +++ b/eclass/gnome2-utils.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gnome2-utils.eclass,v 1.5 2007/05/11 20:52:53 dang Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gnome2-utils.eclass,v 1.6 2007/06/14 20:46:18 dang Exp $ # # gnome2-utils.eclass @@ -52,7 +52,7 @@ gnome2_gconf_install() { done # have gconf reload the new schemas - pids=$(pidof gconfd-2) + pids=$(pgrep -x gconfd-2) if [[ $? == 0 ]] ; then ebegin "Reloading GConf schemas" kill -HUP ${pids} |