]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
kbuild: dtbinst: remove unnecessary __dtbs_install_prep target
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Thu, 4 May 2017 01:14:57 +0000 (10:14 +0900)
committerMasahiro Yamada <yamada.masahiro@socionext.com>
Sun, 7 May 2017 22:26:06 +0000 (07:26 +0900)
Since commit 5399eb9b3908 ("dtbsinstall: don't move target directory
out of the way"), the target __dtbs_install_prep is invoked just for
creating the install directory, but all the necessary directories
are automatically created by:
   cmd_dtb_install = mkdir -p $(2); cp $< $(2)

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
scripts/Makefile.dtbinst

index a1be75d0a5fd3fbf4742e555046896ea6fa6fe65..34614a48b717eafa2c15f418e6e6769905e32ec1 100644 (file)
@@ -20,12 +20,6 @@ include include/config/auto.conf
 include scripts/Kbuild.include
 include $(src)/Makefile
 
-PHONY += __dtbs_install_prep
-__dtbs_install_prep:
-ifeq ("$(dtbinst-root)", "$(obj)")
-       $(Q)mkdir -p $(INSTALL_DTBS_PATH)
-endif
-
 dtbinst-files  := $(dtb-y)
 dtbinst-dirs   := $(dts-dirs)
 
@@ -35,8 +29,6 @@ quiet_cmd_dtb_install =       INSTALL $<
 
 install-dir = $(patsubst $(dtbinst-root)%,$(INSTALL_DTBS_PATH)%,$(obj))
 
-$(dtbinst-files) $(dtbinst-dirs): | __dtbs_install_prep
-
 $(dtbinst-files): %.dtb: $(obj)/%.dtb
        $(call cmd,dtb_install,$(install-dir))