Skip to content

Commit

Permalink
kbuild: include $(src)/Makefile rather than $(obj)/Makefile
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: Michal Marek <[email protected]>
  • Loading branch information
masahir0y authored and michal42 committed Apr 2, 2015
1 parent a436bb7 commit 5f655c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/Makefile.dtbinst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export dtbinst-root ?= $(obj)

include include/config/auto.conf
include scripts/Kbuild.include
include $(obj)/Makefile
include $(src)/Makefile

PHONY += __dtbs_install_prep
__dtbs_install_prep:
Expand Down
2 changes: 1 addition & 1 deletion scripts/Makefile.fwinst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ src := $(obj)
-include $(objtree)/.config

include scripts/Kbuild.include
include $(obj)/Makefile
include $(src)/Makefile

include scripts/Makefile.host

Expand Down

0 comments on commit 5f655c7

Please sign in to comment.