diff options
author | Brad King <brad.king@kitware.com> | 2005-10-17 13:58:53 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2005-10-17 13:58:53 (GMT) |
commit | a7d4b61699fe7693f8c2db4727f9a3f98fd51d02 (patch) | |
tree | c62ab4c24e1e281e6ed921097360fda8b8440793 /Source/cmDependsFortranLexer.in.l | |
parent | 12ef4edf64d2dd26cd03bd355b0f710b410f8d29 (diff) | |
download | CMake-a7d4b61699fe7693f8c2db4727f9a3f98fd51d02.zip CMake-a7d4b61699fe7693f8c2db4727f9a3f98fd51d02.tar.gz CMake-a7d4b61699fe7693f8c2db4727f9a3f98fd51d02.tar.bz2 |
BUG: Lexer should be case insensitive so flex should be run with -i option. This partially addresses bug#2361.
Diffstat (limited to 'Source/cmDependsFortranLexer.in.l')
-rw-r--r-- | Source/cmDependsFortranLexer.in.l | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmDependsFortranLexer.in.l b/Source/cmDependsFortranLexer.in.l index 6936f5c..a9ed256 100644 --- a/Source/cmDependsFortranLexer.in.l +++ b/Source/cmDependsFortranLexer.in.l @@ -31,7 +31,7 @@ This file must be translated to C and modified to build everywhere. Run flex like this: - flex --prefix=cmDependsFortran_yy --header-file=cmDependsFortranLexer.h -ocmDependsFortranLexer.cxx cmDependsFortranLexer.in.l + flex -i --prefix=cmDependsFortran_yy --header-file=cmDependsFortranLexer.h -ocmDependsFortranLexer.cxx cmDependsFortranLexer.in.l Modify cmDependsFortranLexer.cxx: - remove TABs |