diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-07-23 15:44:28 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-07-23 15:44:28 +0000 |
commit | a437500420e7cfbf2d8882e1c77acad3a898cad9 (patch) | |
tree | 869a63b80adfc15272297d125662e0712d34e361 /perl-install/standalone | |
parent | b0e5f43c39754a9466147ced6bacbf645c5c9f7e (diff) | |
download | drakx-a437500420e7cfbf2d8882e1c77acad3a898cad9.tar drakx-a437500420e7cfbf2d8882e1c77acad3a898cad9.tar.gz drakx-a437500420e7cfbf2d8882e1c77acad3a898cad9.tar.bz2 drakx-a437500420e7cfbf2d8882e1c77acad3a898cad9.tar.xz drakx-a437500420e7cfbf2d8882e1c77acad3a898cad9.zip |
fix #1679 & #3673
Diffstat (limited to 'perl-install/standalone')
-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 c1242ac81..713b78d46 100755 --- a/perl-install/standalone/drakfont +++ b/perl-install/standalone/drakfont @@ -336,7 +336,7 @@ sub put_font_dir() { interactive_progress($pbar2, 0.10, N("True Type fonts installation")); glob("$drakfont_dir/tmp/tmp/*.TTF") and system('cd ' . $drakfont_dir . '/tmp/tmp ; for foo in *.TTF; do mv $foo `basename $foo .TTF`.ttf; done'); - system('cd ' . $drakfont_dir . '/tmp/tmp && cp *.ttf ../../ttf'); + system('cd ' . $drakfont_dir . '/tmp/tmp && cp *.ttf ../../ttf; chmod 644 ../../ttf/*ttf'); interactive_progress($pbar2, 0.20, N("please wait during ttmkfdir...")); my $ttfdir = $drakfont_dir . "/ttf"; |