Skip to content

Commit

Permalink
Fix: change 'CMakefiles' to 'CMakeFiles' (the 'F' is uppercase)
Browse files Browse the repository at this point in the history
* doc/arch.doc: Fix two typos. Change 'CMakefiles' to 'CMakeFiles'
  (the 'F' is uppercase). 'CMakefiles' prevented the verbatim perl
  script to run correctly, giving error due to an unexisting dir.
  • Loading branch information
mehw committed Dec 16, 2017
1 parent 4f45bd2 commit bcc09aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/arch.doc
Expand Up @@ -209,12 +209,12 @@ if (!-e "../src/${file}.l")
exit 1;
}
system("touch ../src/${file}.l");
unless (rename "src/CMakeFiles/_doxygen.dir/build.make","src/CMakefiles/_doxygen.dir/build.make.old") {
unless (rename "src/CMakeFiles/_doxygen.dir/build.make","src/CMakeFiles/_doxygen.dir/build.make.old") {
print STDERR "Error: cannot rename src/CMakeFiles/_doxygen.dir/build.make!\n";
exit 1;
}
if (open(F,"<src/CMakeFiles/_doxygen.dir/build.make.old")) {
unless (open(G,">src/CMakefiles/_doxygen.dir/build.make")) {
unless (open(G,">src/CMakeFiles/_doxygen.dir/build.make")) {
print STDERR "Error: opening file build.make for writing\n";
exit 1;
}
Expand Down

0 comments on commit bcc09aa

Please sign in to comment.