commit 6c7080a61fc7 [firmware: fix directory creation rule matching with make 3.82] broke builds with make 3.80. This is caused by the literal substitution behaving differently with this version of make. The following works with make 3.82, 3.81 and 3.80. Signed-off-by: Mark Asselstine <mark.asselstine@xxxxxxxxxxxxx> --- Jan I was able to reproduce your error and this change fixes it, can you try this out? I would prefer to keep things working with the latest versions of make. I am still looking into any possible consequences of removing the double dollar sign. scripts/Makefile.fwinst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Makefile.fwinst b/scripts/Makefile.fwinst index c3f69ae..e264fab 100644 --- a/scripts/Makefile.fwinst +++ b/scripts/Makefile.fwinst @@ -42,7 +42,7 @@ quiet_cmd_install = INSTALL $(subst $(srctree)/,,$@) $(installed-fw-dirs): $(call cmd,mkdir) -$(installed-fw): $(INSTALL_FW_PATH)/%: $(obj)/% | $$(dir $(INSTALL_FW_PATH)/%) +$(installed-fw): $(INSTALL_FW_PATH)/%: $(obj)/% | $(dir $(INSTALL_FW_PATH)/%) $(call cmd,install) PHONY += __fw_install __fw_modinst FORCE -- 1.7.9.5 -- To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html