diff options
author | Linus Torvalds | 2022-07-29 10:46:03 -0700 |
---|---|---|
committer | Linus Torvalds | 2022-07-29 10:46:03 -0700 |
commit | e4d8b09d671f0ee92d36c48b65d2f34affcdd531 (patch) | |
tree | 7dfa16ad4e5a5408335aa17e9993b4f29d4f7e3a /arch | |
parent | a95eb1d086dcc579d52ca4c34742516f6434d1f2 (diff) | |
parent | 88bd24d73d5bfa1b7b97a9221ff320fc44ef401a (diff) |
Merge tag 'riscv-for-linus-5.19-rc9' of git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux
Pull RISC-V fix from Palmer Dabbelt:
"A build fix for 'make vdso_install' that avoids an issue trying to
install the compat VDSO"
* tag 'riscv-for-linus-5.19-rc9' of git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux:
riscv: compat: vdso: Fix vdso_install target
Diffstat (limited to 'arch')
-rw-r--r-- | arch/riscv/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/riscv/Makefile b/arch/riscv/Makefile index a4c46a03d2e2..81029d40a672 100644 --- a/arch/riscv/Makefile +++ b/arch/riscv/Makefile @@ -111,7 +111,7 @@ PHONY += vdso_install vdso_install: $(Q)$(MAKE) $(build)=arch/riscv/kernel/vdso $@ $(if $(CONFIG_COMPAT),$(Q)$(MAKE) \ - $(build)=arch/riscv/kernel/compat_vdso $@) + $(build)=arch/riscv/kernel/compat_vdso compat_$@) ifeq ($(KBUILD_EXTMOD),) ifeq ($(CONFIG_MMU),y) |