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 | e834e597c00ea270b5906bcf66f0243b8403e80f (patch) | |
tree | 4befae43d4b32d8d33c5dbb227e7337730c8952b /eclass | |
parent | ppc stable, bug #181965 (diff) | |
download | gentoo-2-e834e597c00ea270b5906bcf66f0243b8403e80f.tar.gz gentoo-2-e834e597c00ea270b5906bcf66f0243b8403e80f.tar.bz2 gentoo-2-e834e597c00ea270b5906bcf66f0243b8403e80f.zip |
Change pidof to pgrep; bug #182044
Diffstat (limited to '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} |