summaryrefslogtreecommitdiff
path: root/helpcompiler/source/HelpLinker.cxx
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2013-02-26 14:55:52 +0100
committerDavid Tardon <dtardon@redhat.com>2013-02-26 15:24:53 +0100
commitf094641d3ad1be5f2b09c2ed9c63fd6e18bd6799 (patch)
treec9566a3d4e9f859498368d44991eed4997302e30 /helpcompiler/source/HelpLinker.cxx
parent2f1c0be4533dc476fc23b82502360c5abc13906b (diff)
add opt -nolangroot needed for gbuild
Change-Id: Id76dfc5698619f8095e0c682ae4ce5e181c9a599
Diffstat (limited to 'helpcompiler/source/HelpLinker.cxx')
-rw-r--r--helpcompiler/source/HelpLinker.cxx6
1 files changed, 5 insertions, 1 deletions
diff --git a/helpcompiler/source/HelpLinker.cxx b/helpcompiler/source/HelpLinker.cxx
index 6d00f67742e3..0bdde1848c68 100644
--- a/helpcompiler/source/HelpLinker.cxx
+++ b/helpcompiler/source/HelpLinker.cxx
@@ -373,7 +373,9 @@ void HelpLinker::link() throw( HelpProcessingException )
}
else
{
- langsourceRoot.append('/' + lang + '/');
+ langsourceRoot.append( "/" );
+ if ( m_bUseLangRoot )
+ langsourceRoot.append( lang + '/' );
xhpFile = fs::path(xhpFileName, fs::native);
}
@@ -732,6 +734,8 @@ void HelpLinker::main( std::vector<std::string> &args,
if (!addFileUnderPath.empty() && !addFile.empty())
additionalFiles[addFileUnderPath] = addFile;
}
+ else if (args[i].compare("-nolangroot") == 0)
+ m_bUseLangRoot = false;
else
helpFiles.push_back(args[i]);
++i;