commit: 97292f63c17e8aed6bf625404700279a49dd4b17 Author: James Le Cuirot <chewi <AT> gentoo <DOT> org> AuthorDate: Thu Aug 20 22:19:36 2020 +0000 Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org> CommitDate: Thu Aug 20 22:19:36 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97292f63
gnome-base/gconf: Avoid harmless "No such file or directory" message Closes: https://bugs.gentoo.org/523868 Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org> gnome-base/gconf/gconf-3.2.6-r5.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gnome-base/gconf/gconf-3.2.6-r5.ebuild b/gnome-base/gconf/gconf-3.2.6-r5.ebuild index ca22f3e6fb6..5459cfbdca6 100644 --- a/gnome-base/gconf/gconf-3.2.6-r5.ebuild +++ b/gnome-base/gconf/gconf-3.2.6-r5.ebuild @@ -136,6 +136,9 @@ pkg_postrm() { } kill_gconf() { + # Avoid harmless error message. See bug #523868. + mkdir -p "${HOME}"/.config || die + # This function will kill all running gconfd-2 that could be causing troubles if [ -x "${EPREFIX}"/usr/bin/gconftool-2 ] then
