summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2017-11-13 19:29:35 +0900
committerMasahiro Yamada <yamada.masahiro@socionext.com>2017-11-16 09:07:34 +0900
commit2982c953570b2bced858613d70443c2c6a90587b (patch)
tree95ec17379f0339fff06259c978c287997e0ed890 /Makefile
parent9a234a2e384349f21afac8d718aa294a668ad4fa (diff)
downloadop-kernel-dev-2982c953570b2bced858613d70443c2c6a90587b.zip
op-kernel-dev-2982c953570b2bced858613d70443c2c6a90587b.tar.gz
kbuild: remove redundant $(wildcard ...) for cmd_files calculation
I do not see any reason why $(wildcard ...) needs to be called twice for computing cmd_files. Remove the first one. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index a7476e6..58dd245 100644
--- a/Makefile
+++ b/Makefile
@@ -1693,8 +1693,7 @@ cmd_crmodverdir = $(Q)mkdir -p $(MODVERDIR) \
# read all saved command lines
-targets := $(wildcard $(sort $(targets)))
-cmd_files := $(wildcard .*.cmd $(foreach f,$(targets),$(dir $(f)).$(notdir $(f)).cmd))
+cmd_files := $(wildcard .*.cmd $(foreach f,$(sort $(targets)),$(dir $(f)).$(notdir $(f)).cmd))
ifneq ($(cmd_files),)
$(cmd_files): ; # Do not try to update included dependency files
OpenPOWER on IntegriCloud