Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/dmenu/
Date: Tue, 31 Oct 2017 04:59:58
Message-Id: 1509425990.50131048b8e8bcd9f9129b78deae94db486aa6b1.jer@gentoo
1 commit: 50131048b8e8bcd9f9129b78deae94db486aa6b1
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 31 04:59:30 2017 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 31 04:59:50 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50131048
7
8 x11-misc/dmenu: Fix savedconfig support in live ebuild by Hadrien Lacour (bug #635820).
9
10 Package-Manager: Portage-2.3.13, Repoman-2.3.4
11
12 x11-misc/dmenu/dmenu-9999.ebuild | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/x11-misc/dmenu/dmenu-9999.ebuild b/x11-misc/dmenu/dmenu-9999.ebuild
16 index ebd674d6232..e55ea229223 100644
17 --- a/x11-misc/dmenu/dmenu-9999.ebuild
18 +++ b/x11-misc/dmenu/dmenu-9999.ebuild
19 @@ -37,7 +37,7 @@ src_prepare() {
20 -e '/^ echo/d' \
21 Makefile || die
22
23 - restore_config config.def.h
24 + restore_config config.h
25 }
26
27 src_compile() {
28 @@ -57,5 +57,5 @@ src_compile() {
29 src_install() {
30 emake DESTDIR="${D}" PREFIX="/usr" install
31
32 - save_config config.def.h
33 + save_config config.h
34 }