Skip to content

Commit

Permalink
Fix error documentation of in flex debug script
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimitri van Heesch committed Dec 20, 2015
1 parent 3bcef26 commit 09c4e99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/arch.doc
Expand Up @@ -220,10 +220,10 @@ if (open(F,"<src/CMakeFiles/_doxygen.dir/build.make.old")) {
}
print "Processing build.make...\n";
while (<F>) {
if ( s/flex \$\(LEX_FLAGS\) -P${file}YY/flex -d -P${file}YY/ ) {
if ( s/flex \$\(LEX_FLAGS\) -P${file}YY/flex \$(LEX_FLAGS) -d -P${file}YY/ ) {
print "Enabling debug info for $file.l\n";
}
elsif ( s/flex \$\(LEX_FLAGS\) -d -P${file}YY/flex -P${file}YY/ ) {
elsif ( s/flex \$\(LEX_FLAGS\) -d -P${file}YY/flex \$(LEX_FLAGS) -P${file}YY/ ) {
print "Disabling debug info for $file\n";
}
print G "$_";
Expand Down

0 comments on commit 09c4e99

Please sign in to comment.