diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-07-23 13:11:26 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-07-27 12:18:19 +0900 |
commit | b2eff0921805935132bc308d3c769ef2efb321ad (patch) | |
tree | b358b29f950d0f5d8f0134e6c6348f76e88c8743 /scripts | |
parent | 5f9e832c137075045d15cd6899ab0505cfb2ca4b (diff) | |
download | linux-b2eff0921805935132bc308d3c769ef2efb321ad.tar.gz linux-b2eff0921805935132bc308d3c769ef2efb321ad.tar.bz2 linux-b2eff0921805935132bc308d3c769ef2efb321ad.zip |
kbuild: remove unused objectify macro
Commit 415008af3219 ("docs-rst: convert lsm from DocBook to ReST")
removed the last users of this macro.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/Kbuild.include | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/scripts/Kbuild.include b/scripts/Kbuild.include index 77c742fa4fb1..4b0432e095ae 100644 --- a/scripts/Kbuild.include +++ b/scripts/Kbuild.include @@ -190,9 +190,6 @@ echo-cmd = $(if $($(quiet)cmd_$(1)),\ # printing commands cmd = @set -e; $(echo-cmd) $(cmd_$(1)) -# Add $(obj)/ for paths that are not absolute -objectify = $(foreach o,$(1),$(if $(filter /%,$(o)),$(o),$(obj)/$(o))) - ### # if_changed - execute command if any prerequisite is newer than # target, or command line has changed |