File tree Expand file tree Collapse file tree 4 files changed +4
-8
lines changed Expand file tree Collapse file tree 4 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -1693,8 +1693,7 @@ cmd_crmodverdir = $(Q)mkdir -p $(MODVERDIR) \
1693
1693
1694
1694
# read all saved command lines
1695
1695
1696
- targets := $(wildcard $(sort $(targets ) ) )
1697
- cmd_files := $(wildcard .* .cmd $(foreach f,$(targets ) ,$(dir $(f ) ) .$(notdir $(f ) ) .cmd) )
1696
+ cmd_files := $(wildcard .* .cmd $(foreach f,$(sort $(targets ) ) ,$(dir $(f ) ) .$(notdir $(f ) ) .cmd) )
1698
1697
1699
1698
ifneq ($(cmd_files ) ,)
1700
1699
$(cmd_files ) : ; # Do not try to update included dependency files
Original file line number Diff line number Diff line change @@ -583,8 +583,7 @@ FORCE:
583
583
# optimization, we don't need to read them if the target does not
584
584
# exist, we will rebuild anyway in that case.
585
585
586
- targets := $(wildcard $(sort $(targets)))
587
- cmd_files := $(wildcard $(foreach f,$(targets),$(dir $(f)).$(notdir $(f)).cmd))
586
+ cmd_files := $(wildcard $(foreach f,$(sort $(targets)),$(dir $(f)).$(notdir $(f)).cmd))
588
587
589
588
ifneq ($(cmd_files),)
590
589
include $(cmd_files)
Original file line number Diff line number Diff line change @@ -114,9 +114,8 @@ $(check-file): scripts/headers_check.pl $(output-files) FORCE
114
114
115
115
endif
116
116
117
- targets := $(wildcard $(sort $(targets)))
118
117
cmd_files := $(wildcard \
119
- $(foreach f,$(targets),$(dir $(f)).$(notdir $(f)).cmd))
118
+ $(foreach f,$(sort $( targets) ),$(dir $(f)).$(notdir $(f)).cmd))
120
119
121
120
ifneq ($(cmd_files),)
122
121
include $(cmd_files)
Original file line number Diff line number Diff line change @@ -143,8 +143,7 @@ FORCE:
143
143
# optimization, we don't need to read them if the target does not
144
144
# exist, we will rebuild anyway in that case.
145
145
146
- targets := $(wildcard $(sort $(targets)))
147
- cmd_files := $(wildcard $(foreach f,$(targets),$(dir $(f)).$(notdir $(f)).cmd))
146
+ cmd_files := $(wildcard $(foreach f,$(sort $(targets)),$(dir $(f)).$(notdir $(f)).cmd))
148
147
149
148
ifneq ($(cmd_files),)
150
149
include $(cmd_files)
You can’t perform that action at this time.
0 commit comments