Commit 5f655c7a authored by Masahiro Yamada's avatar Masahiro Yamada Committed by Michal Marek

kbuild: include $(src)/Makefile rather than $(obj)/Makefile

This commit actually has no impact because $(src) and $(obj) point
to the same path, but $(src)/Makefile looks better when we include
source files.
Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: default avatarMichal Marek <mmarek@suse.cz>
parent a436bb7b
...@@ -18,7 +18,7 @@ export dtbinst-root ?= $(obj) ...@@ -18,7 +18,7 @@ export dtbinst-root ?= $(obj)
include include/config/auto.conf include include/config/auto.conf
include scripts/Kbuild.include include scripts/Kbuild.include
include $(obj)/Makefile include $(src)/Makefile
PHONY += __dtbs_install_prep PHONY += __dtbs_install_prep
__dtbs_install_prep: __dtbs_install_prep:
......
...@@ -13,7 +13,7 @@ src := $(obj) ...@@ -13,7 +13,7 @@ src := $(obj)
-include $(objtree)/.config -include $(objtree)/.config
include scripts/Kbuild.include include scripts/Kbuild.include
include $(obj)/Makefile include $(src)/Makefile
include scripts/Makefile.host include scripts/Makefile.host
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment