summaryrefslogtreecommitdiff
path: root/solenv
diff options
context:
space:
mode:
authorFridrich Štrba <fridrich.strba@bluewin.ch>2012-03-02 11:58:19 +0100
committerFridrich Štrba <fridrich.strba@bluewin.ch>2012-03-02 11:58:19 +0100
commit62c6863bc037e7ea3f44852c51cf3cafd75cebf1 (patch)
tree8ef118e0acd9bfc8c265a4bb612992d5f5a30630 /solenv
parente90465a5316f65972bc3c6520106be0d5e5205ac (diff)
tabs -> spaces
Diffstat (limited to 'solenv')
-rw-r--r--solenv/bin/modules/installer/windows/msiglobal.pm12
1 files changed, 6 insertions, 6 deletions
diff --git a/solenv/bin/modules/installer/windows/msiglobal.pm b/solenv/bin/modules/installer/windows/msiglobal.pm
index 03b31a30e954..64b2bb05178f 100644
--- a/solenv/bin/modules/installer/windows/msiglobal.pm
+++ b/solenv/bin/modules/installer/windows/msiglobal.pm
@@ -1111,19 +1111,19 @@ sub create_transforms
chdir($installdir);
$systemcall = $msidb . " " . " -d " . $basedbname . " -r " . $windowslanguage;
system($systemcall);
- # fdo#46181 - zh-HK and zh-MO should have fallen back to zh-TW not to zh-CN
- # we need to hack zh-HK and zh-MO LCIDs directly into the MSI
- if($windowslanguage eq '1028')
+ # fdo#46181 - zh-HK and zh-MO should have fallen back to zh-TW not to zh-CN
+ # we need to hack zh-HK and zh-MO LCIDs directly into the MSI
+ if($windowslanguage eq '1028')
{
rename 1028,3076;
- $systemcall = $msidb . " " . " -d " . $basedbname . " -r " . 3076;
+ $systemcall = $msidb . " " . " -d " . $basedbname . " -r " . 3076;
system($systemcall);
rename 3076,5124;
- $systemcall = $msidb . " " . " -d " . $basedbname . " -r " . 5124;
+ $systemcall = $msidb . " " . " -d " . $basedbname . " -r " . 5124;
system($systemcall);
$templatevalue = $templatevalue . "," . 3076 . "," . 5124;
rename 5124,1028;
- }
+ }
chdir($from);
unlink($transformfile);