diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-10-11 18:44:20 +1100 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-10-11 18:44:20 +1100 |
commit | 75381109025694628d9c95a0391a38e1ab7f2938 (patch) | |
tree | c6a36a5ad0caa64f905ec7855aa6797a0bbeb97f /solenv | |
parent | 9abc8067365e394bdc7c4fe49f642207a86d13f5 (diff) |
Fix missing quote in environment.pm
Change-Id: I6f91165b5c4bfd06a23224f2ed16818c7d74852b
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/bin/modules/installer/environment.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/bin/modules/installer/environment.pm b/solenv/bin/modules/installer/environment.pm index 5e106b212ee3..af9e4e263d12 100644 --- a/solenv/bin/modules/installer/environment.pm +++ b/solenv/bin/modules/installer/environment.pm @@ -109,7 +109,7 @@ sub set_global_environment_variables $installer::globals::compiler = $environment->{'OUTPATH'}; $installer::globals::os = $environment->{'OS'}; $installer::globals::com = $environment->{'COM'}; - $installer::globals::cpuname = $environment->{'CPUNAME}; + $installer::globals::cpuname = $environment->{'CPUNAME'}; if ( $ENV{'LAST_MINOR'} ) { $installer::globals::lastminor = $ENV{'LAST_MINOR'}; } |