solenv/bin/modules/installer/environment.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 04cffa1c81f770bc2a7eab83f94d057cd2fd1547 Author: Douglas Mencken <[email protected]> Date: Wed Jul 23 01:08:21 2014 -0400 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 <[email protected]> Tested-by: Andras Timar <[email protected]> diff --git a/solenv/bin/modules/installer/environment.pm b/solenv/bin/modules/installer/environment.pm index 671ef61..efa93b4 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'}; } _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
