Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/genkernel:master commit in: /
Date: Tue, 26 Mar 2019 08:07:23
Message-Id: 1553587444.9fd158f30aa39cc74883ab7951a78e857eddd217.whissi@gentoo
1 commit: 9fd158f30aa39cc74883ab7951a78e857eddd217
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Tue Mar 26 06:09:26 2019 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Tue Mar 26 08:04:04 2019 +0000
6 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=9fd158f3
7
8 genkernel.conf: Clearify CLEAN configuration option
9
10 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
11
12 genkernel.conf | 13 ++++++-------
13 1 file changed, 6 insertions(+), 7 deletions(-)
14
15 diff --git a/genkernel.conf b/genkernel.conf
16 index 74e4b04..3504b26 100644
17 --- a/genkernel.conf
18 +++ b/genkernel.conf
19 @@ -25,15 +25,14 @@
20 # Run 'make xconfig' before compiling this kernel
21 #XCONFIG="no"
22
23 -# Run 'make clean' before compilation
24 -# If set to NO, implies MRPROPER WILL NOT be run
25 -# Also, if clean is NO, it won't copy over any configuration
26 -# file, it will use what's there.
27 -#CLEAN="yes"
28 -
29 -# Run 'make mrproper' before configuration/compilation
30 +# Run 'make mrproper' before compiling this kernel
31 #MRPROPER="yes"
32
33 +# Run 'make clean' before compiling this kernel
34 +# Only needed if MRPROPER is set to NO because
35 +# MRPROPER implies 'make clean'.
36 +#CLEAN="yes"
37 +
38 # Override the arch detection
39 #ARCH_OVERRIDE="x86"