summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndras Timar <andras.timar@collabora.com>2020-11-08 20:33:19 +0100
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2020-12-15 13:28:31 +0100
commit7cb741a86a71481d956296f1d51b5a7543769d26 (patch)
tree103504745ee08a6dfc79d7a0b8d33290efd3f864
parent1ff9a78d0aca2de2f64836f48d6c97f00ab991a9 (diff)
remove extra space in version number in rpm/deb package info
e.g. Instead of "Base module for LibreOffice 7.0 .3.1" we will get "Base module for LibreOffice 7.0.3.1". Change-Id: I9ce56b33f835a9527f777cfb9c0e466232e6f24f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105449 Tested-by: Jenkins Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> (cherry picked from commit cc8e19c73714c199fd2efdc0fefe3e750e8c14a8) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/107700 Tested-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
-rw-r--r--solenv/bin/modules/installer/epmfile.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/bin/modules/installer/epmfile.pm b/solenv/bin/modules/installer/epmfile.pm
index 6da8ea0a4b00..7a1f5fd94c52 100644
--- a/solenv/bin/modules/installer/epmfile.pm
+++ b/solenv/bin/modules/installer/epmfile.pm
@@ -276,7 +276,7 @@ sub create_epm_header
my $productnamestring = $onepackage->{'description'};
installer::packagelist::resolve_packagevariables(\$productnamestring, $variableshashref, 0);
- if ( $variableshashref->{'PRODUCTEXTENSION'} ) { $productnamestring = $productnamestring . " " . $variableshashref->{'PRODUCTEXTENSION'}; }
+ if ( $variableshashref->{'PRODUCTEXTENSION'} ) { $productnamestring = $productnamestring . $variableshashref->{'PRODUCTEXTENSION'}; }
$line = "%product" . " " . $productnamestring . "\n";
push(@epmheader, $line);