diff options
author | Mauro Rossi <issor.oruam@gmail.com> | 2018-04-24 07:08:18 -0400 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-05-04 21:24:53 -0400 |
commit | 0da7e43261142b93307b70da455376ad84414d0a (patch) | |
tree | ed480f69393345ce54a630da046ea0cfddab2cf1 | |
parent | d59fbbd09d5d6bdf4ea1f0b4090d175e081ff421 (diff) |
genksyms: fix typo in parse.tab.{c,h} generation rules
'quet' is replaced by 'quiet' in scripts/genksyms/Makefile
Signed-off-by: Mauro Rossi <issor.oruam@gmail.com>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
-rw-r--r-- | scripts/genksyms/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/genksyms/Makefile b/scripts/genksyms/Makefile index ef0287e42957..03b7ce97de14 100644 --- a/scripts/genksyms/Makefile +++ b/scripts/genksyms/Makefile | |||
@@ -14,14 +14,14 @@ genksyms-objs := genksyms.o parse.tab.o lex.lex.o | |||
14 | # so that 'bison: not found' will be displayed if it is missing. | 14 | # so that 'bison: not found' will be displayed if it is missing. |
15 | ifeq ($(findstring 1,$(KBUILD_ENABLE_EXTRA_GCC_CHECKS)),) | 15 | ifeq ($(findstring 1,$(KBUILD_ENABLE_EXTRA_GCC_CHECKS)),) |
16 | 16 | ||
17 | quiet_cmd_bison_no_warn = $(quet_cmd_bison) | 17 | quiet_cmd_bison_no_warn = $(quiet_cmd_bison) |
18 | cmd_bison_no_warn = $(YACC) --version >/dev/null; \ | 18 | cmd_bison_no_warn = $(YACC) --version >/dev/null; \ |
19 | $(cmd_bison) 2>/dev/null | 19 | $(cmd_bison) 2>/dev/null |
20 | 20 | ||
21 | $(obj)/parse.tab.c: $(src)/parse.y FORCE | 21 | $(obj)/parse.tab.c: $(src)/parse.y FORCE |
22 | $(call if_changed,bison_no_warn) | 22 | $(call if_changed,bison_no_warn) |
23 | 23 | ||
24 | quiet_cmd_bison_h_no_warn = $(quet_cmd_bison_h) | 24 | quiet_cmd_bison_h_no_warn = $(quiet_cmd_bison_h) |
25 | cmd_bison_h_no_warn = $(YACC) --version >/dev/null; \ | 25 | cmd_bison_h_no_warn = $(YACC) --version >/dev/null; \ |
26 | $(cmd_bison_h) 2>/dev/null | 26 | $(cmd_bison_h) 2>/dev/null |
27 | 27 | ||