diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 1998-05-18 12:25:13 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 1998-05-18 12:25:13 +0000 |
commit | 53c18b007e60c28def43474f148f78b4176b54ea (patch) | |
tree | 459623cb1500901d21f59791ed420d239bafa47e /usr.sbin/config/scan.l | |
parent | e9bade226727715b23b7b2153ae13d8b6678df39 (diff) |
understand makeoption as makeoptions
Diffstat (limited to 'usr.sbin/config/scan.l')
-rw-r--r-- | usr.sbin/config/scan.l | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/config/scan.l b/usr.sbin/config/scan.l index 78b05bfc6fc..d52885cdabb 100644 --- a/usr.sbin/config/scan.l +++ b/usr.sbin/config/scan.l @@ -1,5 +1,5 @@ %{ -/* $OpenBSD: scan.l,v 1.9 1997/11/13 08:21:55 deraadt Exp $ */ +/* $OpenBSD: scan.l,v 1.10 1998/05/18 12:25:12 art Exp $ */ /* $NetBSD: scan.l,v 1.13 1997/02/02 21:12:37 thorpej Exp $ */ /* @@ -100,6 +100,7 @@ include return INCLUDE; machine return XMACHINE; major return MAJOR; makeoptions return MAKEOPTIONS; +makeoption return MAKEOPTIONS; maxpartitions return MAXPARTITIONS; maxusers return MAXUSERS; minor return MINOR; |