diff options
author | 2002-07-07 23:58:00 +0000 | |
---|---|---|
committer | 2002-07-07 23:58:00 +0000 | |
commit | 6fa30948125f6e765e8c66273f2a9e435ac40591 (patch) | |
tree | b155e524254913559a041a217336c2e7716e3e64 /gnome-base/gconf | |
parent | attempt to fix mysql/bdb thing. (diff) | |
download | gentoo-2-6fa30948125f6e765e8c66273f2a9e435ac40591.tar.gz gentoo-2-6fa30948125f6e765e8c66273f2a9e435ac40591.tar.bz2 gentoo-2-6fa30948125f6e765e8c66273f2a9e435ac40591.zip |
fixing a broken gconftool-2 test
Diffstat (limited to 'gnome-base/gconf')
-rw-r--r-- | gnome-base/gconf/ChangeLog | 7 | ||||
-rw-r--r-- | gnome-base/gconf/gconf-1.2.0-r3.ebuild | 6 |
2 files changed, 10 insertions, 3 deletions
diff --git a/gnome-base/gconf/ChangeLog b/gnome-base/gconf/ChangeLog index 108661a90987..532d126773eb 100644 --- a/gnome-base/gconf/ChangeLog +++ b/gnome-base/gconf/ChangeLog @@ -1,6 +1,7 @@ # ChangeLog for gnome-base/gconf # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/gnome-base/gconf/ChangeLog,v 1.17 2002/07/06 23:59:25 spider Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/gconf/ChangeLog,v 1.18 2002/07/07 23:57:59 spider Exp $ + gconf-1.2.0-r3 (06 Jul 2002) @@ -10,6 +11,10 @@ gconf-1.2.0-r3 (06 Jul 2002) a quick addendum to create /root/.gconfd as well + 07 Jul 2002; Spider <spider@gentoo.org> + changed a typo'd 1 to 2 in gconftool-2 check. + http://bugs.gentoo.org/show_bug.cgi?id=4665 + gconf-1.2.0-r2 (28 jun 2002) 28 Jun 2002; Spider <spider@gentoo.org> gconf-1.2.0-r2.ebuild : added a dep for gtk-doc to see if it helps diff --git a/gnome-base/gconf/gconf-1.2.0-r3.ebuild b/gnome-base/gconf/gconf-1.2.0-r3.ebuild index d29a0d6292cc..26dcc311b33e 100644 --- a/gnome-base/gconf/gconf-1.2.0-r3.ebuild +++ b/gnome-base/gconf/gconf-1.2.0-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/gnome-base/gconf/gconf-1.2.0-r3.ebuild,v 1.2 2002/07/06 23:59:25 spider Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/gconf/gconf-1.2.0-r3.ebuild,v 1.3 2002/07/07 23:58:00 spider Exp $ inherit gnome2 @@ -33,9 +33,11 @@ kill_gconf () { then /usr/bin/gconftool-1 --shutdown fi + + # and for gconf 2 if [ -x /usr/bin/gconftool-2 ] then - /usr/bin/gconftool-1 --shutdown + /usr/bin/gconftool-2 --shutdown fi } |