]> git.baikalelectronics.ru Git - kernel.git/commit
sh: fix build error for empty CONFIG_BUILTIN_DTB_SOURCE
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Mon, 19 Feb 2018 17:09:42 +0000 (02:09 +0900)
committerMasahiro Yamada <yamada.masahiro@socionext.com>
Fri, 2 Mar 2018 00:20:55 +0000 (09:20 +0900)
commit31eb647a048aa7c61333ed896564ae1071a427da
tree350b51b68a3e97d47d6bfd65a8b3780a013c257b
parent474e4c004ca659ee680572b3e493971cda01a486
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>
arch/sh/boot/dts/Makefile