forgot to apply unix fix to this file as I did on the branch

This commit is contained in:
ben%bengoodger.com 2004-05-25 22:32:24 +00:00
Родитель e065307996
Коммит 3f8738e47f
1 изменённых файлов: 5 добавлений и 2 удалений

Просмотреть файл

@ -147,8 +147,11 @@ sub ParseInstallerCfg
while ($line = <fpInstallCfg>)
{
chop $line if (substr($line, -1, 1) eq "\r");
($prop, $value) = ($line =~ m/(\w*)\s+=\s+(.*)\r\n/);
if (substr($line, -2, 2) eq "\r\n") {
$line = substr($line, 0, length($line) - 2) . "\n";
}
($prop, $value) = ($line =~ m/(\w*)\s+=\s+(.*)\n/);
if ($prop eq "VersionLanguage") {
$ENV{WIZ_versionLanguage} = $value;