Commit 4d762034 authored by Linus Torvalds's avatar Linus Torvalds

Merge tag 'kbuild-fixes-v5.13' of...

Merge tag 'kbuild-fixes-v5.13' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild

Pull Kbuild fixes from Masahiro Yamada:

 - Fix short log indentation for tools builds

 - Fix dummy-tools to adjust to the latest stackprotector check

* tag 'kbuild-fixes-v5.13' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild:
  kbuild: dummy-tools: adjust to stricter stackprotector check
  scripts/jobserver-exec: Fix a typo ("envirnoment")
  tools build: Fix quiet cmd indentation
parents 34c5c898 c93db682
...@@ -76,7 +76,11 @@ fi ...@@ -76,7 +76,11 @@ fi
if arg_contain -S "$@"; then if arg_contain -S "$@"; then
# For scripts/gcc-x86-*-has-stack-protector.sh # For scripts/gcc-x86-*-has-stack-protector.sh
if arg_contain -fstack-protector "$@"; then if arg_contain -fstack-protector "$@"; then
if arg_contain -mstack-protector-guard-reg=fs "$@"; then
echo "%fs"
else
echo "%gs" echo "%gs"
fi
exit 0 exit 0
fi fi
......
...@@ -10,7 +10,7 @@ from __future__ import print_function ...@@ -10,7 +10,7 @@ from __future__ import print_function
import os, sys, errno import os, sys, errno
import subprocess import subprocess
# Extract and prepare jobserver file descriptors from envirnoment. # Extract and prepare jobserver file descriptors from environment.
claim = 0 claim = 0
jobs = b"" jobs = b""
try: try:
......
...@@ -144,7 +144,7 @@ ifneq ($(silent),1) ...@@ -144,7 +144,7 @@ ifneq ($(silent),1)
$(MAKE) $(PRINT_DIR) -C $$subdir $(MAKE) $(PRINT_DIR) -C $$subdir
QUIET_FLEX = @echo ' FLEX '$@; QUIET_FLEX = @echo ' FLEX '$@;
QUIET_BISON = @echo ' BISON '$@; QUIET_BISON = @echo ' BISON '$@;
QUIET_GENSKEL = @echo ' GEN-SKEL '$@; QUIET_GENSKEL = @echo ' GENSKEL '$@;
descend = \ descend = \
+@echo ' DESCEND '$(1); \ +@echo ' DESCEND '$(1); \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment