Commit 5f655c7a4c9fcf7152b8a34e987d936f7b5255b8

Authored by Masahiro Yamada
Committed by Michal Marek
1 parent a436bb7b80

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: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>

Showing 2 changed files with 2 additions and 2 deletions Side-by-side Diff

scripts/Makefile.dtbinst
... ... @@ -18,7 +18,7 @@
18 18  
19 19 include include/config/auto.conf
20 20 include scripts/Kbuild.include
21   -include $(obj)/Makefile
  21 +include $(src)/Makefile
22 22  
23 23 PHONY += __dtbs_install_prep
24 24 __dtbs_install_prep:
scripts/Makefile.fwinst
... ... @@ -13,7 +13,7 @@
13 13 -include $(objtree)/.config
14 14  
15 15 include scripts/Kbuild.include
16   -include $(obj)/Makefile
  16 +include $(src)/Makefile
17 17  
18 18 include scripts/Makefile.host
19 19