diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2015-03-27 14:43:35 +0300 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2015-04-02 17:42:08 +0300 |
commit | 7aacad53aeb57b7ff52399f56eb6d7d4010e72e9 (patch) | |
tree | d698b3eef4d545a011dc71fbf2fa70b65d8e9cbf /arch/arm/boot/Makefile | |
parent | 8a58e1628ce4416490fb00e958b867fb5b9b1f90 (diff) | |
download | linux-7aacad53aeb57b7ff52399f56eb6d7d4010e72e9.tar.xz |
kbuild: use relative path to include Makefile
The "MAKEFLAGS += --include-dir=$(srctree)" line in the top Makefile
allows us to do this.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'arch/arm/boot/Makefile')
-rw-r--r-- | arch/arm/boot/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/boot/Makefile b/arch/arm/boot/Makefile index ec2f8065f955..9eca7aee927f 100644 --- a/arch/arm/boot/Makefile +++ b/arch/arm/boot/Makefile @@ -12,7 +12,7 @@ # ifneq ($(MACHINE),) -include $(srctree)/$(MACHINE)/Makefile.boot +include $(MACHINE)/Makefile.boot endif # Note: the following conditions must always be true: |