Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

sparc: vdso: use $(addprefix ) instead of $(foreach )

$(addprefix ) is slightly shorter and more intuitive.

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Acked-by: Sam Ravnborg <sam@ravnborg.org>

+1 -1
+1 -1
arch/sparc/vdso/Makefile
··· 13 13 obj-$(CONFIG_SPARC64) += vdso-image-64.o 14 14 obj-$(CONFIG_COMPAT) += vdso-image-32.o 15 15 16 - vobjs := $(foreach F,$(vobjs-y),$(obj)/$F) 16 + vobjs := $(addprefix $(obj)/, $(vobjs-y)) 17 17 18 18 $(obj)/vdso.o: $(obj)/vdso.so 19 19