Commit 833b7708 authored by Kai Germaschewski's avatar Kai Germaschewski

kbuild: Fix command line printing

If our command line contains an ';', we'd only print half of
it and execute the other half - not good.
parent 3198f1d1
......@@ -401,5 +401,5 @@ endif
if_changed = $(if $(strip $? \
$(filter-out $($(1)),$(cmd_$(@F)))\
$(filter-out $(cmd_$(@F)),$($(1)))),\
@echo $($(1)) && $($(1)) && echo 'cmd_$@ := $($(1))' > $(@D)/.$(@F).cmd)
@echo '$($(1))' && $($(1)) && echo 'cmd_$@ := $($(1))' > $(@D)/.$(@F).cmd)
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