Gentoo Archives: gentoo-commits

From: James Le Cuirot <chewi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-base/gconf/
Date: Thu, 20 Aug 2020 22:20:40
Message-Id: 1597961976.97292f63c17e8aed6bf625404700279a49dd4b17.chewi@gentoo
1 commit: 97292f63c17e8aed6bf625404700279a49dd4b17
2 Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 20 22:19:36 2020 +0000
4 Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 20 22:19:36 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97292f63
7
8 gnome-base/gconf: Avoid harmless "No such file or directory" message
9
10 Closes: https://bugs.gentoo.org/523868
11 Package-Manager: Portage-3.0.4, Repoman-3.0.1
12 Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
13
14 gnome-base/gconf/gconf-3.2.6-r5.ebuild | 3 +++
15 1 file changed, 3 insertions(+)
16
17 diff --git a/gnome-base/gconf/gconf-3.2.6-r5.ebuild b/gnome-base/gconf/gconf-3.2.6-r5.ebuild
18 index ca22f3e6fb6..5459cfbdca6 100644
19 --- a/gnome-base/gconf/gconf-3.2.6-r5.ebuild
20 +++ b/gnome-base/gconf/gconf-3.2.6-r5.ebuild
21 @@ -136,6 +136,9 @@ pkg_postrm() {
22 }
23
24 kill_gconf() {
25 + # Avoid harmless error message. See bug #523868.
26 + mkdir -p "${HOME}"/.config || die
27 +
28 # This function will kill all running gconfd-2 that could be causing troubles
29 if [ -x "${EPREFIX}"/usr/bin/gconftool-2 ]
30 then