summaryrefslogtreecommitdiffstats
path: root/move
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2004-07-02 04:15:08 +0000
committerPascal Rigaux <pixel@mandriva.com>2004-07-02 04:15:08 +0000
commitaf3d0e0c117cb0bfc604f119849681700ad96a8a (patch)
treeafedac054c55fce9d1cd47c26b28fe4b96eccc34 /move
parente4a01c5567ea5ca4cf390aee16a07e624ee57c43 (diff)
downloaddrakx-backup-do-not-use-af3d0e0c117cb0bfc604f119849681700ad96a8a.tar
drakx-backup-do-not-use-af3d0e0c117cb0bfc604f119849681700ad96a8a.tar.gz
drakx-backup-do-not-use-af3d0e0c117cb0bfc604f119849681700ad96a8a.tar.bz2
drakx-backup-do-not-use-af3d0e0c117cb0bfc604f119849681700ad96a8a.tar.xz
drakx-backup-do-not-use-af3d0e0c117cb0bfc604f119849681700ad96a8a.zip
(lang2move_clp_name): if $dir is a symlink, this symlink is broken at that moment, so test "-d $dir" after testing "-l $dir"
Diffstat (limited to 'move')
-rw-r--r--move/move.pm3
1 files changed, 1 insertions, 2 deletions
diff --git a/move/move.pm b/move/move.pm
index 5c3f9a94b..4f62cf514 100644
--- a/move/move.pm
+++ b/move/move.pm
@@ -106,8 +106,7 @@ sub setup_userconf {
sub lang2move_clp_name {
my ($lang) = @_;
my $dir = '/usr/share/locale/' . lang::l2locale($lang);
- -d $dir or return 'ERROR';
- my $link = readlink($dir) or return;
+ my $link = readlink($dir) or return -d $dir ? '' : 'ERROR';
my ($name) = $link =~ m!image_(i18n_.*?)/! or log::l("ERROR: bad link $link for $dir"), return 'ERROR';
$name;
}