diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-03-28 05:55:02 (GMT) |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-03-28 19:06:32 (GMT) |
commit | 6bd04bb48715dc8e8f6d1a3389f886698bba0dc0 (patch) | |
tree | b29a23e12167974244d4a6823cb56698dbd162bb /Makefile | |
parent | 5a449d75bca1e8798571cb04093553593e5ed73e (diff) | |
download | u-boot-6bd04bb48715dc8e8f6d1a3389f886698bba0dc0.tar.xz |
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 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1173,7 +1173,7 @@ MRPROPER_FILES += .config .config.old \ clean: rm-dirs := $(CLEAN_DIRS) clean: rm-files := $(CLEAN_FILES) -clean-dirs := $(foreach f,$(u-boot-alldirs),$(if $(wildcard $f/Makefile),$f)) +clean-dirs := $(foreach f,$(u-boot-alldirs),$(if $(wildcard $(srctree)/$f/Makefile),$f)) clean-dirs := $(addprefix _clean_, $(clean-dirs) doc/DocBook) |