From 7cb741a86a71481d956296f1d51b5a7543769d26 Mon Sep 17 00:00:00 2001 From: Andras Timar Date: Sun, 8 Nov 2020 20:33:19 +0100 Subject: 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 (cherry picked from commit cc8e19c73714c199fd2efdc0fefe3e750e8c14a8) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/107700 Tested-by: Christian Lohmaier --- solenv/bin/modules/installer/epmfile.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- cgit