diff options
Diffstat (limited to 'perl-install/standalone/drakfont')
-rwxr-xr-x | perl-install/standalone/drakfont | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/drakfont b/perl-install/standalone/drakfont index 96d9bb2ac..cebb1156b 100755 --- a/perl-install/standalone/drakfont +++ b/perl-install/standalone/drakfont @@ -309,7 +309,7 @@ sub move_fonts { my ($src_dir, $dest_dir, @extensions) = @_; my @fonts = map { s!.*/!!; $_ } map { glob("$src_dir/*.$_") } @extensions; return if !@fonts; - system('mv', "$src_dir/$_", $dest_dir) foreach @fonts; + system('mv', "$src_dir/$_", "$src_dir/$dest_dir") foreach @fonts; } sub my_rm_rf { |