We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b9222f commit 0c43315Copy full SHA for 0c43315
makefiles/firmware.mk
@@ -201,9 +201,9 @@ MODULES := $(sort $(MODULES))
201
# locate the first instance of a module by full path or by looking on the
202
# module search path
203
define MODULE_SEARCH
204
- $(abspath $(firstword $(wildcard $(1)/module.mk) \
205
- $(foreach search_dir,$(MODULE_SEARCH_DIRS),$(wildcard $(search_dir)/$(1)/module.mk)) \
206
- MISSING_$1))
+ $(firstword $(abspath $(wildcard $(1)/module.mk)) \
+ $(abspath $(foreach search_dir,$(MODULE_SEARCH_DIRS),$(wildcard $(search_dir)/$(1)/module.mk))) \
+ MISSING_$1)
207
endef
208
209
# make a list of module makefiles and check that we found them all
0 commit comments