commit: 7407ff68589f6067ab3e99f3beff956f2b0f1495 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org> AuthorDate: Fri Mar 29 03:40:49 2019 +0000 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org> CommitDate: Fri Mar 29 04:12:58 2019 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=7407ff68
genkernel: Add missing indentation for "KV has changed" output Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org> genkernel | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/genkernel b/genkernel index 43f5e5b..0111a32 100755 --- a/genkernel +++ b/genkernel @@ -227,7 +227,7 @@ then then compile_generic prepare kernel else - print_info 2 "Skipping 'make prepare' due to ARCH_HAVENOPREPARE=yes!" + print_info 2 "$(getIndent 1)>> Skipping 'make prepare' due to ARCH_HAVENOPREPARE=yes!" fi # KV may have changed due to the configuration @@ -235,10 +235,10 @@ then if [ -f "${TEMP}/.old_kv" ] then old_KV=$(cat "${TEMP}/.old_kv") - print_info 1 "Kernel version has changed (probably due to config change) since genkernel start:" - print_info 1 "We are now building Linux kernel ${BOLD}${KV}${NORMAL} for ${BOLD}${ARCH}${NORMAL}..." + print_info 1 "$(getIndent 1)>> Kernel version has changed (probably due to config change) since genkernel start:" + print_info 1 "$(getIndent 1)>> We are now building Linux kernel ${BOLD}${KV}${NORMAL} for ${BOLD}${ARCH}${NORMAL}..." else - print_info 2 "Kernel version has not changed since genkernel start." + print_info 2 "$(getIndent 1)>> Kernel version has not changed since genkernel start." fi compile_kernel