Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d59fbbd0 authored by Masahiro Yamada's avatar Masahiro Yamada
Browse files

kbuild: replace hardcoded bison in cmd_bison_h with $(YACC)



Commit 73a4f6db ("kbuild: add LEX and YACC variables") missed to
update cmd_bison_h somehow.

Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
parent 642ef99b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)