Dave Koziol wrote: > It's been a little while since I've looked at this, but this problem is > usually caused by the wrong end of line markers in the *.et files. If I > remember correctly, these files need to have unix end of line markers You remember correctly. I spent a couple of hours wrestling with this, today. However, an easier solution than removing all the extra carriage returns from those files is to simply modify the lexer definition so that ignores carriage returns like it does other whitespace. Load up src/comerr/et_lex.lex.l, find the line that reads: [\t\n ] ; and add a \r: [\t\n\r ] ; Eric _______________________________________________ OpenAFS-devel mailing list [EMAIL PROTECTED] https://lists.openafs.org/mailman/listinfo.cgi/openafs-devel
