diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2026-04-25 17:04:15 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2026-04-25 17:04:15 -0700 |
| commit | b935117fe6d1af576e39b1f18c9e875f44bd146f (patch) | |
| tree | 1da88d9f76fcf4a130f93657dbe79f16e7959968 /Makefile | |
| parent | 2ff1bc41ef9133a52c116b36e5e88430353a8ba5 (diff) | |
| parent | 75f7c47ccd78c947cf1b6ddb18ea453ff0555716 (diff) | |
| download | linux-next-history-b935117fe6d1af576e39b1f18c9e875f44bd146f.tar.gz | |
Merge tag 'kbuild-fixes-7.1-1' of git://git.kernel.org/pub/scm/linux/kernel/git/kbuild/linux
Pull Kbuild fixes from Nicolas Schier:
- builddeb - avoid recompiles for non-cross-compiles
Avoid triggering complete rebuilds for non-cross-compile Debian
package builds by only triggering the rebuild of host tools for
actual cross-compile builds
- Never respect CONFIG_WERROR / W=e to fixdep
Avoid spurious rebuilds of fixdep w/ and w/o -Werror during a single
kbuild invocation by never respecting CONFIG_WERROR for fixdep
* tag 'kbuild-fixes-7.1-1' of git://git.kernel.org/pub/scm/linux/kernel/git/kbuild/linux:
kbuild: Never respect CONFIG_WERROR / W=e to fixdep
kbuild: builddeb - avoid recompiles for non-cross-compiles
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile index 54e1ae6020001..6c8a1b2e7c8a2 100644 --- a/Makefile +++ b/Makefile @@ -657,6 +657,8 @@ export RCS_FIND_IGNORE := \( -name SCCS -o -name BitKeeper -o -name .svn -o \ # Basic helpers built in scripts/basic/ PHONY += scripts_basic +scripts_basic: KBUILD_HOSTCFLAGS := $(KBUILD_HOSTCFLAGS) +scripts_basic: KBUILD_HOSTLDFLAGS := $(KBUILD_HOSTLDFLAGS) scripts_basic: $(Q)$(MAKE) $(build)=scripts/basic |
