diff options
author | damien <damien@mandriva.com> | 2002-03-07 11:33:26 +0000 |
---|---|---|
committer | damien <damien@mandriva.com> | 2002-03-07 11:33:26 +0000 |
commit | bde843e9a778eecc701063635c9462d9fb7a2265 (patch) | |
tree | fc0f48c2c17121c517194218b509d984028feda9 | |
parent | 397fc731c8792b7895aca90e91cc937b09a17733 (diff) | |
download | drakx-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
-rwxr-xr-x | perl-install/standalone/drakfont | 6 |
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"; |