summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndras Timar <andras.timar@collabora.com>2023-06-09 18:26:57 +0200
committerAndras Timar <andras.timar@collabora.com>2023-06-12 14:56:30 +0200
commit79b1841e494cc28d4ba9a7e149f3232ccaa50dc3 (patch)
treec9df363d3a3aa0fe7e3b01d0c99e4c92b5b6f4ce
parent98f9c933e4fc286b9bc737783c0906c6abc61d2c (diff)
improve package descriptions
Adding PRODUCTEXTENSION made only sense when the description ended with the version number. It was not always the case, and the following examples looked ugly: - Calc module for Collabora Office 23.05 (debug info).0.20230609 - Language module for Collabora Office 23.05, language de.0.20230609 - UNO Runtime Environment.0.20230609 We have the info in the package version number anyway. Change-Id: I8ed5a735d2b8664315fc9612e8e42d6805e329f2
-rw-r--r--solenv/bin/modules/installer/epmfile.pm1
1 files changed, 0 insertions, 1 deletions
diff --git a/solenv/bin/modules/installer/epmfile.pm b/solenv/bin/modules/installer/epmfile.pm
index 4a24e6ab2089..2eeae2cb202c 100644
--- a/solenv/bin/modules/installer/epmfile.pm
+++ b/solenv/bin/modules/installer/epmfile.pm
@@ -299,7 +299,6 @@ sub create_epm_header
my $productnamestring = $onepackage->{'description'};
installer::packagelist::resolve_packagevariables(\$productnamestring, $variableshashref, 0);
- if ( $variableshashref->{'PRODUCTEXTENSION'} ) { $productnamestring = $productnamestring . $variableshashref->{'PRODUCTEXTENSION'}; }
$line = "%product" . " " . $productnamestring . "\n";
push(@epmheader, $line);