kbuild: save $(strip ...) for calling if_changed and friends
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Sat, 22 Jun 2019 16:07:05 +0000 (01:07 +0900)
committerMasahiro Yamada <yamada.masahiro@socionext.com>
Mon, 1 Jul 2019 01:03:40 +0000 (10:03 +0900)
commitc2341e2a4f58d8e27d89c5edfefdaa52547f792d
treed9663a355afa1589a97ab87c3b843442ee5edccc
parent93f31bbda43603da1e8af06667b45b410c6c897a
kbuild: save $(strip ...) for calling if_changed and friends

The string returned by $(filter-out ...) does not contain any leading
or trailing spaces.

With the previous commit, 'any-prereq' no longer contains any
excessive spaces.

Nor does 'cmd-check' since it expands to a $(filter-out ...) call.

So, only the space that matters is the one between 'any-prereq'
and 'cmd-check'.

By removing it from the code, we can save $(strip ...) evaluation.
This refactoring is possible because $(any-prereq)$(cmd-check) is only
passed to the first argument of $(if ...), so we are only interested
in whether or not it is empty.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
scripts/Kbuild.include