summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRene Engelhard <rene@debian.org>2020-02-03 19:27:36 +0100
committerRene Engelhard <rene@debian.org>2020-02-11 22:29:59 +0100
commit38e6a5ddb408d8cfabf7f3e578b8bce760c02d11 (patch)
tree36623f0d6f88897bbac8bd8e144af86c6a366f12
parent62e077c3e58b965f0587995667d45a0a26f3672e (diff)
fix svtools' sVendor for langpack install for Debian
after a21987977eae34eaf02fa109201c802f77ea68d1 Change-Id: I4bd2b37e3f006209f55bccca9fe117b0c0c4efbd Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87908 Tested-by: Jenkins Tested-by: Rene Engelhard <rene@debian.org> Reviewed-by: Rene Engelhard <rene@debian.org>
-rw-r--r--svtools/source/misc/langhelp.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/svtools/source/misc/langhelp.cxx b/svtools/source/misc/langhelp.cxx
index b3df64fce1a1..dd681dc42952 100644
--- a/svtools/source/misc/langhelp.cxx
+++ b/svtools/source/misc/langhelp.cxx
@@ -142,8 +142,7 @@ OUString getInstalledLocaleForSystemUILanguage(const css::uno::Sequence<OUString
else
aPackages.emplace_back("libreoffice-langpack-" + install);
}
- //Debian would be: "The Document Foundation/Debian"
- else if (sVendor == "The Document Foundation, Debian and Ubuntu")
+ else if (sVendor == "The Document Foundation/Debian" || sVendor == "The Document Foundation, Debian and Ubuntu")
{
// l10n is the typical Debian/Ubuntu naming convention
aPackages.emplace_back("libreoffice-l10n-" + install);