diff options
author | James Le Cuirot <chewi@gentoo.org> | 2020-08-20 23:19:36 +0100 |
---|---|---|
committer | James Le Cuirot <chewi@gentoo.org> | 2020-08-20 23:19:36 +0100 |
commit | 97292f63c17e8aed6bf625404700279a49dd4b17 (patch) | |
tree | 5537c19b21d143fe0fc53b992830ba75816ac862 /gnome-base/gconf | |
parent | gnome-base/gconf: Python 3, python-single-r1.eclass, EAPI 6 (diff) | |
download | gentoo-97292f63c17e8aed6bf625404700279a49dd4b17.tar.gz gentoo-97292f63c17e8aed6bf625404700279a49dd4b17.tar.bz2 gentoo-97292f63c17e8aed6bf625404700279a49dd4b17.zip |
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@gentoo.org>
Diffstat (limited to 'gnome-base/gconf')
-rw-r--r-- | gnome-base/gconf/gconf-3.2.6-r5.ebuild | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnome-base/gconf/gconf-3.2.6-r5.ebuild b/gnome-base/gconf/gconf-3.2.6-r5.ebuild index ca22f3e6fb60..5459cfbdca64 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 |