aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh/boot/dts/Makefile
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2018-02-20 02:09:42 +0900
committerMasahiro Yamada <yamada.masahiro@socionext.com>2018-03-02 09:20:55 +0900
commit1b1e4ee86e0064ea2a8b8e5ead13734b1e813a92 (patch)
tree350b51b68a3e97d47d6bfd65a8b3780a013c257b /arch/sh/boot/dts/Makefile
parentkconfig: set SYMBOL_AUTO to the symbol marked with defconfig_list (diff)
downloadlinux-dev-1b1e4ee86e0064ea2a8b8e5ead13734b1e813a92.tar.xz
linux-dev-1b1e4ee86e0064ea2a8b8e5ead13734b1e813a92.zip
sh: fix build error for empty CONFIG_BUILTIN_DTB_SOURCE
If CONFIG_USE_BUILTIN_DTB is enabled, but CONFIG_BUILTIN_DTB_SOURCE is empty (for example, allmodconfig), it fails to build, like this: make[2]: *** No rule to make target 'arch/sh/boot/dts/.dtb.o', needed by 'arch/sh/boot/dts/built-in.o'. Stop. Surround obj-y with ifneq ... endif. I replaced $(CONFIG_USE_BUILTIN_DTB) with 'y' since this is always the case from the following code from arch/sh/Makefile: core-$(CONFIG_USE_BUILTIN_DTB) += arch/sh/boot/dts/ Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to '')
-rw-r--r--arch/sh/boot/dts/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/sh/boot/dts/Makefile b/arch/sh/boot/dts/Makefile
index 715def00a436..01d0f7fb14cc 100644
--- a/arch/sh/boot/dts/Makefile
+++ b/arch/sh/boot/dts/Makefile
@@ -1 +1,3 @@
-obj-$(CONFIG_USE_BUILTIN_DTB) += $(patsubst "%",%,$(CONFIG_BUILTIN_DTB_SOURCE)).dtb.o
+ifneq ($(CONFIG_BUILTIN_DTB_SOURCE),"")
+obj-y += $(patsubst "%",%,$(CONFIG_BUILTIN_DTB_SOURCE)).dtb.o
+endif