Re: [PATCH] kbuild: replace hardcoded bison in cmd_bison_h with $(YACC)

From: Masahiro Yamada
Date: Wed May 02 2018 - 12:17:56 EST


2018-04-24 20:07 GMT+09:00 Masahiro Yamada <yamada.masahiro@xxxxxxxxxxxxx>:
> Commit 73a4f6dbe70a ("kbuild: add LEX and YACC variables") missed to
> update cmd_bison_h somehow.
>
> Signed-off-by: Masahiro Yamada <yamada.masahiro@xxxxxxxxxxxxx>
> ---


Applied to linux-kbuild/fixes.


> scripts/Makefile.lib | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib
> index 07d0740..5af34a2b 100644
> --- a/scripts/Makefile.lib
> +++ b/scripts/Makefile.lib
> @@ -196,7 +196,7 @@ $(obj)/%.tab.c: $(src)/%.y FORCE
> $(call if_changed,bison)
>
> quiet_cmd_bison_h = YACC $@
> - cmd_bison_h = bison -o/dev/null --defines=$@ -t -l $<
> + cmd_bison_h = $(YACC) -o/dev/null --defines=$@ -t -l $<
>
> $(obj)/%.tab.h: $(src)/%.y FORCE
> $(call if_changed,bison_h)
> --
> 2.7.4
>
> --
> 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



--
Best Regards
Masahiro Yamada