diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2023-11-21 08:54:23 +0900 |
---|---|---|
committer | John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de> | 2024-01-19 11:57:12 +0100 |
commit | 99fe83ab3bb0e8aac4d45a9361919794336b2ba8 (patch) | |
tree | ee491b7b2ad59df0011092ff337f327e3a24f967 /arch | |
parent | d87123aa9a7920e88633ffc5c5a0a22ab08bdc06 (diff) | |
download | lwn-99fe83ab3bb0e8aac4d45a9361919794336b2ba8.tar.gz lwn-99fe83ab3bb0e8aac4d45a9361919794336b2ba8.zip |
sh: vsyscall: Remove unnecessary $(foreach ...)
There is no need to use $(foreach ...) for iterating over just one parameter.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Reviewed-by: John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>
Link: https://lore.kernel.org/r/20231120235423.4103310-1-masahiroy@kernel.org
Signed-off-by: John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/sh/kernel/vsyscall/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/sh/kernel/vsyscall/Makefile b/arch/sh/kernel/vsyscall/Makefile index 6e8664448048..118744d349e2 100644 --- a/arch/sh/kernel/vsyscall/Makefile +++ b/arch/sh/kernel/vsyscall/Makefile @@ -1,11 +1,10 @@ # SPDX-License-Identifier: GPL-2.0 obj-y += vsyscall.o vsyscall-syscall.o vsyscall-syms.o -$(obj)/vsyscall-syscall.o: \ - $(foreach F,trapa,$(obj)/vsyscall-$F.so) +$(obj)/vsyscall-syscall.o: $(obj)/vsyscall-trapa.so # Teach kbuild about targets -targets += $(foreach F,trapa,vsyscall-$F.o vsyscall-$F.so) +targets += vsyscall-trapa.o vsyscall-traps.so targets += vsyscall-note.o vsyscall.lds vsyscall-dummy.o # The DSO images are built using a special linker script |