Skip to content

Commit

Permalink
issue #10110 Regression: Specified markdown mainpage '...md' has not …
Browse files Browse the repository at this point in the history
…been defined as input file

The filename to be used should be the full qualified filename / filename with absolute path as otherwise the file is not found.
  • Loading branch information
albert-github committed Jun 5, 2023
1 parent cd36329 commit 8d78bce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doxygen.cpp
Expand Up @@ -11712,7 +11712,7 @@ static void checkMarkdownMainfile()
return;
}
bool ambig = false;
if (findFileDef(Doxygen::inputNameLinkedMap,mdfileAsMainPage,ambig)==0)
if (findFileDef(Doxygen::inputNameLinkedMap,fi.absFilePath(),ambig)==0)
{
warn_uncond("Specified markdown mainpage '%s' has not been defined as input file\n",qPrint(mdfileAsMainPage));
return;
Expand Down

0 comments on commit 8d78bce

Please sign in to comment.