diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-01-24 05:47:29 -0500 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-02-13 09:25:49 -0500 |
commit | 981e545a698aee98ed9c11202fe9bc93242f3cec (patch) | |
tree | c780ee0091b08dba92c3aa9fda116bff5ddcb48f | |
parent | f17b5f06cb92ef2250513a1e154c47b78df07d40 (diff) |
kconfig: rename zconf.l to lexer.l
Use a more logical name.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
-rw-r--r-- | scripts/kconfig/Makefile | 6 | ||||
-rw-r--r-- | scripts/kconfig/lexer.l (renamed from scripts/kconfig/zconf.l) | 0 | ||||
-rw-r--r-- | scripts/kconfig/lkc.h | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile index 181973509a05..9278519dbcf3 100644 --- a/scripts/kconfig/Makefile +++ b/scripts/kconfig/Makefile | |||
@@ -143,10 +143,10 @@ help: | |||
143 | 143 | ||
144 | # =========================================================================== | 144 | # =========================================================================== |
145 | # object files used by all kconfig flavours | 145 | # object files used by all kconfig flavours |
146 | common-objs := confdata.o expr.o symbol.o preprocess.o zconf.lex.o zconf.tab.o | 146 | common-objs := confdata.o expr.o lexer.lex.o preprocess.o symbol.o zconf.tab.o |
147 | 147 | ||
148 | $(obj)/zconf.lex.o: $(obj)/zconf.tab.h | 148 | $(obj)/lexer.lex.o: $(obj)/zconf.tab.h |
149 | HOSTCFLAGS_zconf.lex.o := -I$(src) | 149 | HOSTCFLAGS_lexer.lex.o := -I$(src) |
150 | HOSTCFLAGS_zconf.tab.o := -I$(src) | 150 | HOSTCFLAGS_zconf.tab.o := -I$(src) |
151 | 151 | ||
152 | # conf: Used for defconfig, oldconfig and related targets | 152 | # conf: Used for defconfig, oldconfig and related targets |
diff --git a/scripts/kconfig/zconf.l b/scripts/kconfig/lexer.l index b2d0a3b0bce9..b2d0a3b0bce9 100644 --- a/scripts/kconfig/zconf.l +++ b/scripts/kconfig/lexer.l | |||
diff --git a/scripts/kconfig/lkc.h b/scripts/kconfig/lkc.h index 531ff7c57d92..d871539e4b45 100644 --- a/scripts/kconfig/lkc.h +++ b/scripts/kconfig/lkc.h | |||
@@ -90,7 +90,7 @@ void *xrealloc(void *p, size_t size); | |||
90 | char *xstrdup(const char *s); | 90 | char *xstrdup(const char *s); |
91 | char *xstrndup(const char *s, size_t n); | 91 | char *xstrndup(const char *s, size_t n); |
92 | 92 | ||
93 | /* zconf.l */ | 93 | /* lexer.l */ |
94 | int yylex(void); | 94 | int yylex(void); |
95 | 95 | ||
96 | struct gstr { | 96 | struct gstr { |