summaryrefslogtreecommitdiff
path: root/solenv/bin
diff options
context:
space:
mode:
authorDouglas Mencken <dougmencken@gmail.com>2014-07-23 01:08:21 -0400
committerAndras Timar <andras.timar@collabora.com>2014-07-23 09:11:04 +0000
commit04cffa1c81f770bc2a7eab83f94d057cd2fd1547 (patch)
tree058ffc920f835a5029d7bad762e879bfaa4a68f1 /solenv/bin
parent5ccd10fbbd66558a6662d74bc7ba76a4697f593a (diff)
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: 38e6216cfd04f23ca0dbfa6bb99c5631f4891e78 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>
Diffstat (limited to 'solenv/bin')
-rw-r--r--solenv/bin/modules/installer/environment.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/bin/modules/installer/environment.pm b/solenv/bin/modules/installer/environment.pm
index 671ef612863d..efa93b4a43e7 100644
--- a/solenv/bin/modules/installer/environment.pm
+++ b/solenv/bin/modules/installer/environment.pm
@@ -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'}; }