summaryrefslogtreecommitdiffstats
path: root/scripts/Kbuild.include
diff options
context:
space:
mode:
authorLinus Torvalds2019-07-28 19:35:04 +0200
committerLinus Torvalds2019-07-28 19:35:04 +0200
commit8e61ea11c23b108c8ce062f791dfa737896da346 (patch)
tree18c284e15a6ef26d56cfb0fdb152efa9c9014712 /scripts/Kbuild.include
parentMerge tag 'char-misc-5.3-rc2' of git://git.kernel.org/pub/scm/linux/kernel/gi... (diff)
parentkbuild: remove unused single-used-m (diff)
downloadkernel-qcow2-linux-8e61ea11c23b108c8ce062f791dfa737896da346.tar.gz
kernel-qcow2-linux-8e61ea11c23b108c8ce062f791dfa737896da346.tar.xz
kernel-qcow2-linux-8e61ea11c23b108c8ce062f791dfa737896da346.zip
Merge tag 'kbuild-fixes-v5.3' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild
Pull Kbuild fixes from Masahiro Yamada: - add compile_commands.json to .gitignore - fix false-positive warning from gen_compile_commands.py after allnoconfig build - remove unused code * tag 'kbuild-fixes-v5.3' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild: kbuild: remove unused single-used-m gen_compile_commands: lower the entry count threshold .gitignore: Add compilation database file kbuild: remove unused objectify macro
Diffstat (limited to 'scripts/Kbuild.include')
-rw-r--r--scripts/Kbuild.include3
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