installer/environment.pm: fix variable name

Fixes "Use of uninitialized value in concatenation (.) or string
at solenv/bin/modules/installer/environment.pm line 110."

Since: 38e6216cfd

Change-Id: Ia4ed62f64b07d1d244e172dd6e02010d896b845b
Reviewed-on: https://gerrit.libreoffice.org/10480
Reviewed-by: Andras Timar <andras.timar@collabora.com>
Tested-by: Andras Timar <andras.timar@collabora.com>
This commit is contained in:
Douglas Mencken
2014-07-23 01:08:21 -04:00
committed by Andras Timar
parent 5ccd10fbbd
commit 04cffa1c81

View File

@@ -107,7 +107,7 @@ sub set_global_environment_variables
{
my ( $environment ) = @_;
$installer::globals::build = $environment->{'LIBO_VERSION_MAJOR'}.$environment->{'LIBO-VERSION_MINOR'}."0";
$installer::globals::build = $environment->{'LIBO_VERSION_MAJOR'}.$environment->{'LIBO_VERSION_MINOR'}."0";
$installer::globals::compiler = $environment->{'OUTPATH'};
if ( $ENV{'LAST_MINOR'} ) { $installer::globals::lastminor = $ENV{'LAST_MINOR'}; }