Commit efacc216 authored by Sam Ravnborg's avatar Sam Ravnborg

kbuild: Escape "'" in cmd macro

Building drivers/eisa were broken in non-verbose mode.
This has been fixed by escaping "'" for cmd. It was used in $(call cmd,eisaid).
Escaping "'" is already done by if_changed, so this brings cmd in line with
if_changed
parent 3adeaab0
......@@ -225,7 +225,7 @@ if_changed_rule = $(if $(strip $? \
# If quiet is set, only print short version of command
cmd = @$(if $($(quiet)cmd_$(1)),echo ' $($(quiet)cmd_$(1))' &&) $(cmd_$(1))
cmd = @$(if $($(quiet)cmd_$(1)),echo ' $(subst ','\'',$($(quiet)cmd_$(1)))' &&) $(cmd_$(1))
# $(call descend,<dir>,<target>)
# Recursively call a sub-make in <dir> with target <target>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment