summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.m@jp.panasonic.com>2014-03-28 14:55:02 +0900
committerTom Rini <trini@ti.com>2014-03-28 15:06:32 -0400
commit6bd04bb48715dc8e8f6d1a3389f886698bba0dc0 (patch)
treeb29a23e12167974244d4a6823cb56698dbd162bb
parent5a449d75bca1e8798571cb04093553593e5ed73e (diff)
downloadtalos-obmc-uboot-6bd04bb48715dc8e8f6d1a3389f886698bba0dc0.tar.gz
talos-obmc-uboot-6bd04bb48715dc8e8f6d1a3389f886698bba0dc0.zip
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>
-rw-r--r--Makefile2
-rw-r--r--dts/Makefile2
-rw-r--r--scripts/Makefile.clean3
3 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 341f336ce5..e5f5a8cdc2 100644
--- a/Makefile
+++ b/Makefile
@@ -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)
diff --git a/dts/Makefile b/dts/Makefile
index 9907463fc6..e59550c9d2 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
diff --git a/scripts/Makefile.clean b/scripts/Makefile.clean
index 5cd0f51770..d6dcd47f6f 100644
--- a/scripts/Makefile.clean
+++ b/scripts/Makefile.clean
@@ -39,7 +39,8 @@ subdir-ymn := $(addprefix $(obj)/,$(subdir-ymn))
# Temporal work-around for U-Boot
-subdir-ymn := $(foreach f, $(subdir-ymn), $(if $(wildcard $f/Makefile),$f))
+subdir-ymn := $(foreach f, $(subdir-ymn), \
+ $(if $(wildcard $(srctree)/$f/Makefile),$f))
# build a list of files to remove, usually relative to the current
# directory
OpenPOWER on IntegriCloud