]> www.infradead.org Git - users/jedix/linux-maple.git/commit
kbuild: clean up objtool_args slightly
authorMasahiro Yamada <masahiroy@kernel.org>
Sat, 28 Aug 2021 09:51:01 +0000 (18:51 +0900)
committerMasahiro Yamada <masahiroy@kernel.org>
Mon, 30 Aug 2021 07:20:29 +0000 (16:20 +0900)
commitd16a693cf932b8c54329b2bb46e649120115875a
tree034ab00d6fda67b9e1eb5ae36b550f9bcb02e1c7
parentf9a9f624f646987038dfefd80901127fc752f5ea
kbuild: clean up objtool_args slightly

The code:

  $(if $(or $(CONFIG_GCOV_KERNEL),$(CONFIG_LTO_CLANG)), ...)

... can be simpled to:

  $(if $(CONFIG_GCOV_KERNEL)$(CONFIG_LTO_CLANG), ...)

Also, remove meaningless commas at the end of $(if ...).

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
scripts/Makefile.lib