mirror of
https://github.com/torvalds/linux.git
synced 2024-11-21 19:41:42 +00:00
c7b594f53e
Minimize the scope of LC_ALL=C like before commit87c94bfb8a
("kbuild: override build timestamp & version"). Give LC_ALL=C to '$LD -v' to get the consistent version output, as commitbcbcf50f52
("kbuild: fix ld-version.sh to not be affected by locale") mentioned the LD version is affected by locale. While I was here, I merged two sed invocations. Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
31 lines
672 B
Bash
Executable File
31 lines
672 B
Bash
Executable File
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
UTS_MACHINE=$1
|
|
CC_VERSION="$2"
|
|
LD=$3
|
|
|
|
# Do not expand names
|
|
set -f
|
|
|
|
if test -z "$KBUILD_BUILD_USER"; then
|
|
LINUX_COMPILE_BY=$(whoami | sed 's/\\/\\\\/')
|
|
else
|
|
LINUX_COMPILE_BY=$KBUILD_BUILD_USER
|
|
fi
|
|
if test -z "$KBUILD_BUILD_HOST"; then
|
|
LINUX_COMPILE_HOST=`uname -n`
|
|
else
|
|
LINUX_COMPILE_HOST=$KBUILD_BUILD_HOST
|
|
fi
|
|
|
|
LD_VERSION=$(LC_ALL=C $LD -v | head -n1 |
|
|
sed -e 's/(compatible with [^)]*)//' -e 's/[[:space:]]*$//')
|
|
|
|
cat <<EOF
|
|
#define UTS_MACHINE "${UTS_MACHINE}"
|
|
#define LINUX_COMPILE_BY "${LINUX_COMPILE_BY}"
|
|
#define LINUX_COMPILE_HOST "${LINUX_COMPILE_HOST}"
|
|
#define LINUX_COMPILER "${CC_VERSION}, ${LD_VERSION}"
|
|
EOF
|