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: Fri, 29 Mar 2019 04:13:57
Message-Id: 1553832778.7407ff68589f6067ab3e99f3beff956f2b0f1495.whissi@gentoo
1 commit: 7407ff68589f6067ab3e99f3beff956f2b0f1495
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Fri Mar 29 03:40:49 2019 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Fri Mar 29 04:12:58 2019 +0000
6 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=7407ff68
7
8 genkernel: Add missing indentation for "KV has changed" output
9
10 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
11
12 genkernel | 8 ++++----
13 1 file changed, 4 insertions(+), 4 deletions(-)
14
15 diff --git a/genkernel b/genkernel
16 index 43f5e5b..0111a32 100755
17 --- a/genkernel
18 +++ b/genkernel
19 @@ -227,7 +227,7 @@ then
20 then
21 compile_generic prepare kernel
22 else
23 - print_info 2 "Skipping 'make prepare' due to ARCH_HAVENOPREPARE=yes!"
24 + print_info 2 "$(getIndent 1)>> Skipping 'make prepare' due to ARCH_HAVENOPREPARE=yes!"
25 fi
26
27 # KV may have changed due to the configuration
28 @@ -235,10 +235,10 @@ then
29 if [ -f "${TEMP}/.old_kv" ]
30 then
31 old_KV=$(cat "${TEMP}/.old_kv")
32 - print_info 1 "Kernel version has changed (probably due to config change) since genkernel start:"
33 - print_info 1 "We are now building Linux kernel ${BOLD}${KV}${NORMAL} for ${BOLD}${ARCH}${NORMAL}..."
34 + print_info 1 "$(getIndent 1)>> Kernel version has changed (probably due to config change) since genkernel start:"
35 + print_info 1 "$(getIndent 1)>> We are now building Linux kernel ${BOLD}${KV}${NORMAL} for ${BOLD}${ARCH}${NORMAL}..."
36 else
37 - print_info 2 "Kernel version has not changed since genkernel start."
38 + print_info 2 "$(getIndent 1)>> Kernel version has not changed since genkernel start."
39 fi
40
41 compile_kernel