diff options
-rw-r--r-- | perl-install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/lang.pm | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index a221ba90a..d2a2bc090 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,6 +1,8 @@ - create udev nodes configuration file in /etc/udev/devices.d/ instead of conf.d (used for modem and mouse) - fix ext3 formatting with label and progress bar (#30032) +- localedrake: + o don't call grub-gfxmenu when used by simple user Version 10.4.127 - 30 March 2007, by Olivier "blino" Blin diff --git a/perl-install/lang.pm b/perl-install/lang.pm index 7c486bba0..d7fe7c943 100644 --- a/perl-install/lang.pm +++ b/perl-install/lang.pm @@ -1127,7 +1127,7 @@ sub write { configure_hal($locale) if !$b_user_only; - run_program::rooted($::prefix, 'grub-gfxmenu', '--quiet', '--lang', $locale->{lang}); + run_program::rooted($::prefix, 'grub-gfxmenu', '--quiet', '--lang', $locale->{lang}) if !$b_user_only; my $charset = l2charset($locale->{lang}); my $qtglobals = $b_user_only ? "$ENV{HOME}/.qt/qtrc" : "$::prefix/etc/qtrc"; |