diff options
author | Andras Timar <atimar@suse.com> | 2012-03-02 10:59:58 +0100 |
---|---|---|
committer | Andras Timar <atimar@suse.com> | 2012-03-02 11:03:29 +0100 |
commit | 802616ed2df9ca7159dd7acff7aeba4f1fc610fa (patch) | |
tree | 89baac391383f8db28b913e1888cf05262bbf74c /solenv | |
parent | c6f8eb26c07264103a3e99f79b2dc78f9be6ef57 (diff) |
whitespace only, no code change
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/bin/modules/installer/windows/msiglobal.pm | 12 |
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 6f985c4cb192..6a9d68bd8d3f 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); |