diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2017-07-09 14:04:51 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2017-07-09 14:04:51 +0000 |
commit | 421cb020929e64fed3bba5a319c8a215954c3b07 (patch) | |
tree | e36fff7737195bfd599a330a378d921854052034 /usr.sbin/config | |
parent | 7ff9a1f4db462bd71365b5e27e8f23b55ec69bba (diff) |
have bsd.prog.mk/bsd.lib.mk generate .y -> .c/.h rules without intermediate
files. This fixes up parallel builds in the default case.
FreeBSD does something similar.
okay millert@
Diffstat (limited to 'usr.sbin/config')
-rw-r--r-- | usr.sbin/config/scan.l | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/config/scan.l b/usr.sbin/config/scan.l index 0ccd743f8d4..6768b7c0d5a 100644 --- a/usr.sbin/config/scan.l +++ b/usr.sbin/config/scan.l @@ -1,5 +1,5 @@ %{ -/* $OpenBSD: scan.l,v 1.23 2015/11/19 19:48:27 tedu Exp $ */ +/* $OpenBSD: scan.l,v 1.24 2017/07/09 14:04:50 espie Exp $ */ /* $NetBSD: scan.l,v 1.13 1997/02/02 21:12:37 thorpej Exp $ */ /* @@ -48,7 +48,7 @@ #include <string.h> #include <unistd.h> #include "config.h" -#include "y.tab.h" +#include "gram.h" int yyline; const char *yyfile; |