diff options
author | Masahiro Yamada <[email protected]> | 2018-07-03 10:50:14 +0900 |
---|---|---|
committer | Ingo Molnar <[email protected]> | 2018-07-03 09:20:08 +0200 |
commit | c5fcdbf15523f6bbbaeb822e3be6003e60f9d3b7 (patch) | |
tree | ae68bbfc0b7cea99628cce7f7d36b08516034d5b | |
parent | b5722a457b6e5eabd97a7f39c6c2b8e9a623ab15 (diff) |
x86/build/vdso: Simplify 'cmd_vdso2c'
No reason to use 'define' directive here. Just use the = operator.
Signed-off-by: Masahiro Yamada <[email protected]>
Cc: Andy Lutomirski <[email protected]>
Cc: Linus Torvalds <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Thomas Gleixner <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Ingo Molnar <[email protected]>
-rw-r--r-- | arch/x86/entry/vdso/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/x86/entry/vdso/Makefile b/arch/x86/entry/vdso/Makefile index 261802b1cc50..b9ed1aa53a26 100644 --- a/arch/x86/entry/vdso/Makefile +++ b/arch/x86/entry/vdso/Makefile @@ -58,9 +58,7 @@ HOST_EXTRACFLAGS += -I$(srctree)/tools/include -I$(srctree)/include/uapi -I$(src hostprogs-y += vdso2c quiet_cmd_vdso2c = VDSO2C $@ -define cmd_vdso2c - $(obj)/vdso2c $< $(<:%.dbg=%) $@ -endef + cmd_vdso2c = $(obj)/vdso2c $< $(<:%.dbg=%) $@ $(obj)/vdso-image-%.c: $(obj)/vdso%.so.dbg $(obj)/vdso%.so $(obj)/vdso2c FORCE $(call if_changed,vdso2c) |