From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8113E138334 for ; Fri, 29 Mar 2019 04:13:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 45642E0899; Fri, 29 Mar 2019 04:13:56 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1FBC6E0899 for ; Fri, 29 Mar 2019 04:13:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C9DB1335CDE for ; Fri, 29 Mar 2019 04:13:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C9F1957E for ; Fri, 29 Mar 2019 04:13:51 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1553832778.7407ff68589f6067ab3e99f3beff956f2b0f1495.whissi@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: / X-VCS-Repository: proj/genkernel X-VCS-Files: genkernel X-VCS-Directories: / X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: 7407ff68589f6067ab3e99f3beff956f2b0f1495 X-VCS-Branch: master Date: Fri, 29 Mar 2019 04:13:51 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 9120af4a-3baf-40f1-acaa-74698cb7e2a5 X-Archives-Hash: 4617c4287766d13e8a59379e5a379d28 commit: 7407ff68589f6067ab3e99f3beff956f2b0f1495 Author: Thomas Deutschmann gentoo org> AuthorDate: Fri Mar 29 03:40:49 2019 +0000 Commit: Thomas Deutschmann gentoo 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 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