summaryrefslogtreecommitdiff
path: root/solenv
diff options
context:
space:
mode:
authorAndras Timar <andras.timar@collabora.com>2020-11-08 20:33:19 +0100
committerAndras Timar <andras.timar@collabora.com>2020-11-08 21:33:19 +0100
commitc7955d060ea77a2825aa6e98266e8f324fade5bb (patch)
treefc75fefd3f63314d58d1702203d82569821c424e /solenv
parent55a33d4b8e58882ed4a09fb79689198c1db0fd7d (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/+/105447 Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com> Reviewed-by: Andras Timar <andras.timar@collabora.com>
Diffstat (limited to 'solenv')
-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 6ee38483f7fe..ed0066c65f2e 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);