diff options
| -rw-r--r-- | usr.bin/mklocale/Makefile | 2 | ||||
| -rw-r--r-- | usr.bin/mklocale/lex.l | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mklocale/Makefile b/usr.bin/mklocale/Makefile index f07bf46d7f6b..3235b0569ed3 100644 --- a/usr.bin/mklocale/Makefile +++ b/usr.bin/mklocale/Makefile @@ -3,7 +3,7 @@ PROG= mklocale SRCS= yacc.c lex.c CFLAGS+=-I. -CLEANFILES+=y.tab.h yacc.c lex.c +CLEANFILES+=yacc.tab.h yacc.c lex.c MAN1= mklocale.1 SUBDIR= data diff --git a/usr.bin/mklocale/lex.l b/usr.bin/mklocale/lex.l index 0e2f1a9833b3..11da3d53fe65 100644 --- a/usr.bin/mklocale/lex.l +++ b/usr.bin/mklocale/lex.l @@ -44,7 +44,7 @@ static char sccsid[] = "@(#)lex.l 8.1 (Berkeley) 6/6/93"; #include <stdlib.h> #include "ldef.h" -#include "y.tab.h" +#include "yacc.tab.h" %} ODIGIT [0-7] |
