diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-08-15 01:06:22 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-08-21 21:05:21 +0900 |
commit | 10df063855822fcea3c0f51dbf534ad643d3cb1b (patch) | |
tree | 437f5b671d7ceb1870ffa245fd27e2ef45a4892c /arch/m68k | |
parent | 888f0c346ff01d544d1cb9da6395a7b3def7fe87 (diff) | |
download | blackbird-op-linux-10df063855822fcea3c0f51dbf534ad643d3cb1b.tar.gz blackbird-op-linux-10df063855822fcea3c0f51dbf534ad643d3cb1b.zip |
kbuild: rebuild modules when module linker scripts are updated
Currently, the timestamp of module linker scripts are not checked.
Add them to the dependency of modules so they are correctly rebuilt.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'arch/m68k')
-rw-r--r-- | arch/m68k/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/m68k/Makefile b/arch/m68k/Makefile index 482513b9af2c..5d9288384096 100644 --- a/arch/m68k/Makefile +++ b/arch/m68k/Makefile @@ -73,7 +73,7 @@ KBUILD_AFLAGS += -D__uClinux__ endif KBUILD_LDFLAGS := -m m68kelf -KBUILD_LDFLAGS_MODULE += -T $(srctree)/arch/m68k/kernel/module.lds +KBUILD_LDS_MODULE += $(srctree)/arch/m68k/kernel/module.lds ifdef CONFIG_SUN3 LDFLAGS_vmlinux = -N |