diff options
| author | Tobias Deiminger <[email protected]> | 2023-06-20 00:41:05 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-07-07 16:25:56 -0400 |
| commit | 3d3eeae9bf61f472cea2e16fdce8615312f84ac8 (patch) | |
| tree | 87ccf79707c422e57aac8319988e291242a59f46 | |
| parent | 45e636f41fe84895f49d565a6b3e4dacbce8a1fd (diff) | |
Kbuild: Fix cleanup of *.dtb for some archs
'make clean' did not descend into arch/$ARCH/dts for arc, m68k, nios2,
sh, xtensa.
Fix it by adding the missing archs to the explicit clean-dirs list.
Signed-off-by: Tobias Deiminger <[email protected]>
| -rw-r--r-- | dts/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/dts/Makefile b/dts/Makefile index cb311138295..3437e54033d 100644 --- a/dts/Makefile +++ b/dts/Makefile @@ -63,4 +63,6 @@ spl_dtbs: $(obj)/dt-$(SPL_NAME).dtb clean-files := dt.dtb.S # Let clean descend into dts directories -subdir- += ../arch/arm/dts ../arch/microblaze/dts ../arch/mips/dts ../arch/sandbox/dts ../arch/x86/dts ../arch/powerpc/dts ../arch/riscv/dts +subdir- += ../arch/arc/dts ../arch/arm/dts ../arch/m68k/dts ../arch/microblaze/dts \ + ../arch/mips/dts ../arch/nios2/dts ../arch/powerpc/dts ../arch/riscv/dts \ + ../arch/sandbox/dts ../arch/sh/dts ../arch/x86/dts ../arch/xtensa/dts |
