Module: wine Branch: master Commit: 134074e553ac37ff54459e6fdda5673ffe30f725 URL: https://source.winehq.org/git/wine.git/?a=commit;h=134074e553ac37ff54459e6fd... Author: Alexandre Julliard <julliard(a)winehq.org> Date: Wed Mar 18 16:39:47 2020 +0100 make_makefiles: Remove updating codepage list, this is done by make_unicode now. Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- tools/make_makefiles | 9 --------- 1 file changed, 9 deletions(-) diff --git a/tools/make_makefiles b/tools/make_makefiles index bae52dfdba..79b18778a5 100755 --- a/tools/make_makefiles +++ b/tools/make_makefiles @@ -498,15 +498,6 @@ sub update_wine_inf() push @lines, "\n[SortFiles]", sort grep(/^sort/, @nls_files); push @lines, "\n[WineSourceDirs]\n"; replace_in_file "loader/wine.inf.in", '^\[InfFiles\]', '^\[WineSourceDirs\]', join( "\n", @lines ); - - my @codepages = grep /c_\d+\.nls/, @nls_files; - @lines = ( "[Nls]" ); - foreach my $cp (sort { $a <=> $b; } map { /c_(\d+)\.nls/ && $1; } @codepages) - { - push @lines, sprintf "HKLM,System\\CurrentControlSet\\Control\\Nls\\Codepage,\"%u\",,\"c_%03u.nls\"", $cp, $cp; - } - push @lines, "\n"; - replace_in_file "loader/wine.inf.in", '^\[Nls\]', '^$', join( "\n", @lines ); } my $git_dir = $ENV{GIT_DIR} || ".git";