From c753c249f41575e447c9823e020e8c98ca3daa96 Mon Sep 17 00:00:00 2001 From: Thomas Backlund Date: Tue, 28 Apr 2015 19:13:35 +0300 Subject: - localedrake: o write input methods to /etc/locale.conf (mga#15464) --- perl-install/lang.pm | 2 ++ 1 file changed, 2 insertions(+) (limited to 'perl-install/lang.pm') diff --git a/perl-install/lang.pm b/perl-install/lang.pm index 96819d1e7..18400066d 100644 --- a/perl-install/lang.pm +++ b/perl-install/lang.pm @@ -1467,6 +1467,8 @@ sub write { # Only include valid fields and ommit any that are the same as LANG to make it cleaner # (cleanup logic copied from systemd) my @filtered_keys = grep { exists $h->{$_} && ($_ eq 'LANG' || !exists $h->{'LANG'} || $h->{$_} ne $h->{'LANG'}) } @locale_conf_fields; + my @filtered_input = grep { exists $h->{$_} } @IM_i18n_fields; + push (@filtered_keys, @filtered_input); my $h2 = { map { $_ => $h->{$_} } @filtered_keys }; setVarsInShMode($::prefix . $file, 0644, $h2); -- cgit v1.2.1