summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/drakfont
diff options
context:
space:
mode:
authordamien <damien@mandriva.com>2002-03-07 11:33:26 +0000
committerdamien <damien@mandriva.com>2002-03-07 11:33:26 +0000
commitbde843e9a778eecc701063635c9462d9fb7a2265 (patch)
treefc0f48c2c17121c517194218b509d984028feda9 /perl-install/standalone/drakfont
parent397fc731c8792b7895aca90e91cc937b09a17733 (diff)
downloaddrakx-backup-do-not-use-bde843e9a778eecc701063635c9462d9fb7a2265.tar
drakx-backup-do-not-use-bde843e9a778eecc701063635c9462d9fb7a2265.tar.gz
drakx-backup-do-not-use-bde843e9a778eecc701063635c9462d9fb7a2265.tar.bz2
drakx-backup-do-not-use-bde843e9a778eecc701063635c9462d9fb7a2265.tar.xz
drakx-backup-do-not-use-bde843e9a778eecc701063635c9462d9fb7a2265.zip
corrected bad system command
Diffstat (limited to 'perl-install/standalone/drakfont')
-rwxr-xr-xperl-install/standalone/drakfont6
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/standalone/drakfont b/perl-install/standalone/drakfont
index fecf489e9..58e6fffd5 100755
--- a/perl-install/standalone/drakfont
+++ b/perl-install/standalone/drakfont
@@ -352,10 +352,10 @@ sub put_font_dir {
$interactive and progress($pbar1, 0.01, _("done"));
$interactive and progress($pbar2, 0.10, _("True Type fonts installation"));
- system ("cd $drakfont_dir/tmp/tmp ; for i in *.TTF; do mv -f $i `basename $i .TTF`.ttf; done");
- system ("cd $drakfont_dir/tmp/tmp && cp *.ttf ../../ttf");
+ system ('cd '.$drakfont_dir.'/tmp/tmp ; for i in *.TTF; do mv -f $i `basename $i .TTF`.ttf; done');
+ system ('cd '.$drakfont_dir.'/tmp/tmp && cp *.ttf ../../ttf');
$interactive and progress($pbar2, 0.20, _("please wait during ttmkfdir..."));
- system ("cd $drakfont_dir/ttf && $ttmkfdir > fonts.dir" );
+ system ('cd '.$drakfont_dir.'/ttf && $ttmkfdir > fonts.dir' );
$interactive and progress($pbar2, 0.10, _("True Type install done"));
my $restart_xfs = "$chkfontpath -a $drakfont_dir/ttf";