diff options
author | Philippe Reynes <philippe.reynes@softathome.com> | 2022-01-25 11:32:20 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-02-03 12:15:36 -0500 |
commit | 96757b7be5111c4f51763e8fd406ddf9331eba57 (patch) | |
tree | d5d23ca57feaa2ccffd8b4e6ca214a7397b5afd8 /scripts/Makefile | |
parent | 83fe92f3cfd426429f10a37d93b8c04cd05d8c3a (diff) | |
download | u-boot-96757b7be5111c4f51763e8fd406ddf9331eba57.tar.gz u-boot-96757b7be5111c4f51763e8fd406ddf9331eba57.tar.bz2 u-boot-96757b7be5111c4f51763e8fd406ddf9331eba57.zip |
scripts: Makefile: also clean subdir dtc
Since commit 93b196532254 ("Makefile: Only build dtc if needed"),
the sub directory scripts/dtc is never cleaned.
Adds the directory dtc to subdir to always clean it.
Signed-off-by: Philippe Reynes <philippe.reynes@softathome.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'scripts/Makefile')
-rw-r--r-- | scripts/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Makefile b/scripts/Makefile index cfe9fef804..8731e6cecd 100644 --- a/scripts/Makefile +++ b/scripts/Makefile @@ -9,4 +9,4 @@ hostprogs-$(CONFIG_BUILD_BIN2C) += bin2c always := $(hostprogs-y) # Let clean descend into subdirs -subdir- += basic kconfig +subdir- += basic kconfig dtc |