There is a bug in the file examples/extexi in the bison distribution.
Symptom - On Mac OS X Tiger, it stops make with an awk syntax error.
A diff from the current cvs, fixing the problem follows:
Index: examples/extexi
===================================================================
RCS file: /cvsroot/bison/bison/examples/extexi,v
retrieving revision 1.5
diff -r1.5 extexi
80c80
< printf ("%s", input) >> output_dir "/" file;
---
> printf ("%s", input) >> (output_dir "/" file);
82c82
< printf ("%s", input) > output_dir "/" file;
---
> printf ("%s", input) > (output_dir "/" file);
Index: examples/extexi
===================================================================
RCS file: /cvsroot/bison/bison/examples/extexi,v
retrieving revision 1.5
diff -r1.5 extexi
80c80
< printf ("%s", input) >> output_dir "/" file;
---
> printf ("%s", input) >> (output_dir "/" file);
82c82
< printf ("%s", input) > output_dir "/" file;
---
> printf ("%s", input) > (output_dir "/" file);
-------------------------------------
This sig is dedicated to the advancement of Nuclear Power
Tommy Nordgren
[EMAIL PROTECTED]