Skip to content

Commit 981e545

Browse files
committed
kconfig: rename zconf.l to lexer.l
Use a more logical name. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
1 parent f17b5f0 commit 981e545

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

scripts/kconfig/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,10 +143,10 @@ help:
143143

144144
# ===========================================================================
145145
# 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
147147

148-
$(obj)/zconf.lex.o: $(obj)/zconf.tab.h
149-
HOSTCFLAGS_zconf.lex.o := -I$(src)
148+
$(obj)/lexer.lex.o: $(obj)/zconf.tab.h
149+
HOSTCFLAGS_lexer.lex.o := -I$(src)
150150
HOSTCFLAGS_zconf.tab.o := -I$(src)
151151

152152
# conf: Used for defconfig, oldconfig and related targets
File renamed without changes.

scripts/kconfig/lkc.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ void *xrealloc(void *p, size_t size);
9090
char *xstrdup(const char *s);
9191
char *xstrndup(const char *s, size_t n);
9292

93-
/* zconf.l */
93+
/* lexer.l */
9494
int yylex(void);
9595

9696
struct gstr {

0 commit comments

Comments
 (0)