diff options
author | Andras Timar <andras.timar@collabora.com> | 2018-09-30 11:49:07 +0200 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2018-09-30 19:16:52 +0200 |
commit | a906b68a9fff30c2af5c03189e59c1952cd3f69f (patch) | |
tree | 0b40615be347bde7c221a85ddf6c36c4a23c5d20 /l10ntools | |
parent | 3b4935255c3b1c4592259239d6ade4adae6cb888 (diff) |
pocheck: fix usage message
pocheck needs environment variables that bin/run does not provide
Change-Id: I0de148363d60c515d4024cd0e97d1025ce50b6a5
Reviewed-on: https://gerrit.libreoffice.org/61160
Tested-by: Jenkins
Reviewed-by: Andras Timar <andras.timar@collabora.com>
Diffstat (limited to 'l10ntools')
-rw-r--r-- | l10ntools/source/pocheck.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/l10ntools/source/pocheck.cxx b/l10ntools/source/pocheck.cxx index 241c225e1c35..e0b66877c0bc 100644 --- a/l10ntools/source/pocheck.cxx +++ b/l10ntools/source/pocheck.cxx @@ -458,7 +458,7 @@ int main() OString aLanguages(getenv("ALL_LANGS")); if( aLanguages.isEmpty() ) { - std::cerr << "Usage: bin/run pocheck\n"; + std::cerr << "Usage: LD_LIBRARY_PATH=instdir/program make cmd cmd=workdir/LinkTarget/Executable/pocheck\n"; return 1; } for(sal_Int32 i = 1;;++i) // skip en-US |