Message ID | b3ea9607ad67524018c336e1dd54f5d729d60324.1402503408.git.luto@amacapital.net (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
diff --git a/scripts/Kbuild.include b/scripts/Kbuild.include index 122f95c..3e60923 100644 --- a/scripts/Kbuild.include +++ b/scripts/Kbuild.include @@ -194,6 +194,7 @@ echo-cmd = $(if $($(quiet)cmd_$(1)),\ # printing commands cmd = @$(echo-cmd) $(cmd_$(1)) +recipe-cmd = $(echo-cmd) $(cmd_$(1)) # Add $(obj)/ for paths that are not absolute objectify = $(foreach o,$(1),$(if $(filter /%,$(o)),$(o),$(obj)/$(o)))
It's awkward to put $(call cmd,xyz) in a loop in a recipe because the pesky at sign gets in the way. Signed-off-by: Andy Lutomirski <luto@amacapital.net> --- scripts/Kbuild.include | 1 + 1 file changed, 1 insertion(+)