From d7c757172de9b9d426c5f55381d2dce7c39b0c94 Mon Sep 17 00:00:00 2001
From: Bertrand Jacquin <bertrand@jacquin.bzh>
Date: Sat, 27 Feb 2021 03:12:11 +0000
Subject: [PATCH] build: print short version command only for quiet build
On verbose build, most shell scripts enable set -x making short version
command output redundant. On silent build, no output is expected. Hence
the short version should only be printed for quiet build.
---
kernel/gen_kheaders.sh | 2 +-
scripts/adjust_autoksyms.sh | 2 +-
scripts/link-vmlinux.sh | 2 +-
scripts/mkcompile_h | 2 +-
scripts/mkmakefile | 2 +-
5 files changed, 5 insertions(+), 5 deletions(-)
@@ -56,7 +56,7 @@ if [ -f kernel/kheaders.md5 ] &&
exit
fi
-if [ "${quiet}" != "silent_" ]; then
+if [ "${quiet}" = "quiet_" ]; then
echo " GEN $tarfile"
fi
@@ -20,7 +20,7 @@ cur_ksyms_file="include/generated/autoksyms.h"
new_ksyms_file="include/generated/autoksyms.h.tmpnew"
info() {
- if [ "$quiet" != "silent_" ]; then
+ if [ "$quiet" = "quiet_" ]; then
printf " %-7s %s\n" "$1" "$2"
fi
}
@@ -38,7 +38,7 @@ LDFLAGS_vmlinux="$3"
# Will be supressed by "make -s"
info()
{
- if [ "${quiet}" != "silent_" ]; then
+ if [ "${quiet}" = "quiet_" ]; then
printf " %-7s %s\n" "${1}" "${2}"
fi
}
@@ -9,7 +9,7 @@ PREEMPT_RT=$5
CC_VERSION="$6"
LD=$7
-vecho() { [ "${quiet}" = "silent_" ] || echo "$@" ; }
+vecho() { [ "${quiet}" = "quiet_" ] && echo "$@" ; }
# Do not expand names
set -f
@@ -7,7 +7,7 @@
# Usage
# $1 - Kernel src directory
-if [ "${quiet}" != "silent_" ]; then
+if [ "${quiet}" = "quiet_" ]; then
echo " GEN Makefile"
fi