diff options
author | Tom Rini <trini@konsulko.com> | 2021-07-14 20:10:34 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-07-14 20:10:34 -0400 |
commit | c11f5abce84f630c92304683d5bde3204c5612c4 (patch) | |
tree | 29f4a7db27669fac1ea7b7eb8821b5440b09af0d /scripts/Makefile.lib | |
parent | eae8c7c33829c3bd25a792600c1fe6ed842a1ddc (diff) | |
parent | 963fde31559f50ceb4f5965f00d79f8747a9d217 (diff) |
Merge branch '2021-07-14-build-and-host-updates'
- Resync Kbuild with the v4.20 Linux Kernel release
- Update checkpatch.pl
- Assorted other tooling updates
Diffstat (limited to 'scripts/Makefile.lib')
-rw-r--r-- | scripts/Makefile.lib | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib index 78bbebe7e9..07696e86bb 100644 --- a/scripts/Makefile.lib +++ b/scripts/Makefile.lib @@ -320,7 +320,7 @@ quiet_cmd_dtc = DTC $@ # Bring in any U-Boot-specific include at the end of the file cmd_dtc = mkdir -p $(dir ${dtc-tmp}) ; \ (cat $<; $(if $(u_boot_dtsi),echo '$(pound)include "$(u_boot_dtsi)"')) > $(pre-tmp); \ - $(CPP) $(dtc_cpp_flags) -x assembler-with-cpp -o $(dtc-tmp) $(pre-tmp) ; \ + $(HOSTCC) -E $(dtc_cpp_flags) -x assembler-with-cpp -o $(dtc-tmp) $(pre-tmp) ; \ $(DTC) -O dtb -o $@ -b 0 \ -i $(dir $<) $(DTC_FLAGS) \ -d $(depfile).dtc.tmp $(dtc-tmp) || \ |