Skip to content
Snippets Groups Projects
Commit 1bea9652 authored by Axel Naumann's avatar Axel Naumann
Browse files

Also patch up relative links to ../.

git-svn-id: http://root.cern.ch/svn/root/trunk@31117 27541ba8-7e3a-0410-8455-c3a389f83636
parent 0c833abe
No related branches found
No related tags found
No related merge requests found
...@@ -296,6 +296,8 @@ void TDocOutput::AdjustSourcePath(TString& line, const char* relpath /*= "../"*/ ...@@ -296,6 +296,8 @@ void TDocOutput::AdjustSourcePath(TString& line, const char* relpath /*= "../"*/
TString replWithRelPath("=\""); TString replWithRelPath("=\"");
replWithRelPath += relpath; replWithRelPath += relpath;
line.ReplaceAll("=\"./", replWithRelPath); line.ReplaceAll("=\"./", replWithRelPath);
replWithRelPath.ReplaceAll("=\"", "=\"../");
line.ReplaceAll("=\"../", replWithRelPath);
} }
//______________________________________________________________________________ //______________________________________________________________________________
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment