diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-03-28 14:55:02 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-03-28 15:06:32 -0400 |
commit | 6bd04bb48715dc8e8f6d1a3389f886698bba0dc0 (patch) | |
tree | b29a23e12167974244d4a6823cb56698dbd162bb /dts | |
parent | 5a449d75bca1e8798571cb04093553593e5ed73e (diff) |
kbuild: fix bugs in cleaning targets
"make clean", "make clobber", "make mrproper" and "make distclean"
missed to clean-up some files when they were run with
O=<some_dir> option.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Reported-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'dts')
-rw-r--r-- | dts/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dts/Makefile b/dts/Makefile index 9907463fc63..e59550c9d2e 100644 --- a/dts/Makefile +++ b/dts/Makefile @@ -44,4 +44,4 @@ dtbs: $(obj)/dt.dtb clean-files := dt.dtb.S # Let clean descend into dts directories -subdir- += ../arch/*/dts +subdir- += ../arch/arm/dts ../arch/microblaze/dts ../arch/sandbox/dts ../arch/x86/dts |