Commit f173ee05 authored by Sam Ravnborg's avatar Sam Ravnborg

kbuild: Fix debugging leftover

So now check for commandline options actually works again.
Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
parent d7107fa1
......@@ -186,7 +186,7 @@ cmd_gzip = gzip -f -9 < $< > $@
ifneq ($(KBUILD_NOCMDDEP),1)
# Check if both arguments has same arguments. Result in empty string if equal
# User may override this check using make KBUILD_NOCMDDEP=1
_arg-check = $(strip $(filter-out $(1), $(2)) $(filter-out $(2), $(1)) )
arg-check = $(strip $(filter-out $(1), $(2)) $(filter-out $(2), $(1)) )
endif
......
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