solenv/bin/modules/installer/epmfile.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 28c77f04df51d73890ca0175c66704d1abbd6ed9 Author: Andras Timar <andras.ti...@collabora.com> AuthorDate: Tue Aug 23 21:57:10 2022 +0200 Commit: Andras Timar <andras.ti...@collabora.com> CommitDate: Tue Aug 23 21:57:14 2022 +0200 Debian package names must not contain uppercase letters MIMO packageversion string contains capital M. Change-Id: Iefa3d8102e1c7ebb779e84a246abb7262bbad384 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";