diff options
author | Thierry Vignaud <tv@mageia.org> | 2011-12-14 19:35:56 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2011-12-14 19:35:56 +0000 |
commit | e018588e89cf8296d4dda340968b71a79e4a114f (patch) | |
tree | 4d12b8cde44026a8427ecfa5a07c1f81654079cb /perl-install | |
parent | bbc670648440a36e73b8b0473cc0d4a1f313f35a (diff) | |
download | drakx-e018588e89cf8296d4dda340968b71a79e4a114f.tar drakx-e018588e89cf8296d4dda340968b71a79e4a114f.tar.gz drakx-e018588e89cf8296d4dda340968b71a79e4a114f.tar.bz2 drakx-e018588e89cf8296d4dda340968b71a79e4a114f.tar.xz drakx-e018588e89cf8296d4dda340968b71a79e4a114f.zip |
fix missing names after bogus cleaning-before-importing (mga#3745)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/.perl_checker | 1 | ||||
-rw-r--r-- | perl-install/NEWS | 2 | ||||
-rwxr-xr-x | perl-install/standalone/harddrake2 | 2 |
3 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/.perl_checker b/perl-install/.perl_checker index b0e673b0a..d6c292fd5 100644 --- a/perl-install/.perl_checker +++ b/perl-install/.perl_checker @@ -9,6 +9,7 @@ Data::DumpXML::Parser Date::Manip Digest::MD5 Encode +File::Basename File::Copy::Recursive File::Find File::FnMatch diff --git a/perl-install/NEWS b/perl-install/NEWS index 7954605c5..a7c10c485 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,5 @@ +- harddrake: fix missing names (mga#3745) + Version 13.72.1 - 11 December 2011 - fix $HOME for all when runing as another user instead of root (mga#287) diff --git a/perl-install/standalone/harddrake2 b/perl-install/standalone/harddrake2 index 926d0469f..4a1cc87fb 100755 --- a/perl-install/standalone/harddrake2 +++ b/perl-install/standalone/harddrake2 @@ -234,7 +234,7 @@ my @menu_items = $license =~ s/\n/\n\n/sg; # nicer formatting my $w = gtknew('AboutDialog', name => N("Harddrake"), version => mageia_release_info()->{version}, - copyright => N("Copyright (C) %s by %s", '2001-2008') . "\n" . N("Copyright (C) %s by %s",'2011') , + copyright => N("Copyright (C) %s by %s", '2001-2008', 'Mandriva') . "\n" . N("Copyright (C) %s by %s", '2011', N("Mageia")), license => $license, wrap_license => 1, comments => N("This is HardDrake, a %s hardware configuration tool.", $distro_name), website => 'http://www.mageia.org', |