summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndras Timar <andras.timar@collabora.com>2022-08-23 21:57:10 +0200
committerAndras Timar <andras.timar@collabora.com>2022-10-25 08:52:55 +0200
commita8a98ecfe00964541fb9a13462115d178d52b752 (patch)
tree9963ff511116e3c7b0b2d4edc9b40cb6860b4e47
parent6696829b8aecd5d403fc35ea461fc2c5e0638dfa (diff)
Debian package names must not contain uppercase letters
MIMO packageversion string contains capital M. Change-Id: Iefa3d8102e1c7ebb779e84a246abb7262bbad384
-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 7a1f5fd94c52..09b9deb0289b 100644
--- a/solenv/bin/modules/installer/epmfile.pm
+++ b/solenv/bin/modules/installer/epmfile.pm
@@ -289,7 +289,7 @@ sub create_epm_header
installer::packagelist::resolve_packagevariables(\$installer::globals::packageversion, $variableshashref, 0);
if ( $variableshashref->{'PACKAGEREVISION'} ) { $installer::globals::packagerevision = $variableshashref->{'PACKAGEREVISION'}; }
- $line = "%version" . " " . $installer::globals::packageversion . "\n";
+ $line = "%version" . " " . lc $installer::globals::packageversion . "\n";
push(@epmheader, $line);
$line = "%release" . " " . $installer::globals::packagerevision . "\n";