diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2004-09-18 19:51:54 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2004-09-18 19:51:54 +0000 |
commit | 4fda7fbd12effc60a1a03b72a68de99db77730f0 (patch) | |
tree | dcde9dbab24bdbb7aab14c00a4365af8347f326c /sys/dev/microcode/aic7xxx/aicasm_scan.l | |
parent | b05f7f51a2678f9d2c01195a629bc2fa5d04447c (diff) |
repair build that reused y.tab.h for two different parsers
thus failing a build every other time.
make generated arrays const and repair rcsid generation for output.
allow one-step build; from krw@
krw@ ok
Diffstat (limited to 'sys/dev/microcode/aic7xxx/aicasm_scan.l')
-rw-r--r-- | sys/dev/microcode/aic7xxx/aicasm_scan.l | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/microcode/aic7xxx/aicasm_scan.l b/sys/dev/microcode/aic7xxx/aicasm_scan.l index b682cfda1a3..27fe114d60f 100644 --- a/sys/dev/microcode/aic7xxx/aicasm_scan.l +++ b/sys/dev/microcode/aic7xxx/aicasm_scan.l @@ -1,5 +1,5 @@ %{ -/* $OpenBSD: aicasm_scan.l,v 1.8 2004/06/12 03:37:20 krw Exp $ */ +/* $OpenBSD: aicasm_scan.l,v 1.9 2004/09/18 19:51:53 mickey Exp $ */ /* * Lexical Analyzer for the Aic7xxx SCSI Host adapter sequencer assembler. * @@ -39,7 +39,7 @@ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGES. * - * $Id: aicasm_scan.l,v 1.8 2004/06/12 03:37:20 krw Exp $ + * $Id: aicasm_scan.l,v 1.9 2004/09/18 19:51:53 mickey Exp $ * * $FreeBSD: src/sys/dev/aic7xxx/aicasm/aicasm_scan.l,v 1.22 2003/12/16 23:54:07 gibbs Exp $ */ @@ -60,7 +60,7 @@ #include "aicasm.h" #include "aicasm_symbol.h" -#include "y.tab.h" +#include "aicasm_gram.h" /* This is used for macro body capture too, so err on the large size. */ #define MAX_STR_CONST 4096 |