diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-10-07 11:58:35 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-10-07 11:58:35 +0000 |
commit | 018933d46709703cd10846d5d30774d1b91f47f9 (patch) | |
tree | 65fb66c61c7220a87ba1b85c0628a165cf857d32 | |
parent | 2d2942658f2907d1454cdc4e70f1a7eb7844b784 (diff) | |
download | drakx-018933d46709703cd10846d5d30774d1b91f47f9.tar drakx-018933d46709703cd10846d5d30774d1b91f47f9.tar.gz drakx-018933d46709703cd10846d5d30774d1b91f47f9.tar.bz2 drakx-018933d46709703cd10846d5d30774d1b91f47f9.tar.xz drakx-018933d46709703cd10846d5d30774d1b91f47f9.zip |
fix ttmkfdir path
-rw-r--r-- | perl-install/NEWS | 2 | ||||
-rwxr-xr-x | perl-install/standalone/drakfont | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 0bb091f7c..162f8abba 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,5 +1,7 @@ - drakclock: o do not crash if timezones cannot be listed (mga#6787) +- drakfont: + o fix ttmkfdir path Version 14.45 - 20 September 2012 diff --git a/perl-install/standalone/drakfont b/perl-install/standalone/drakfont index d2e5a6d55..03df9aedc 100755 --- a/perl-install/standalone/drakfont +++ b/perl-install/standalone/drakfont @@ -155,7 +155,7 @@ my $pfm2afm = '/usr/sbin/pfm2afm'; my $type1inst = '/usr/sbin/type1inst'; my $chkfontpath = '/usr/sbin/chkfontpath'; # mkttfdir only knows about iso-8859-1, using ttmkfdir -u instead -- pablo -my $ttmkfdir = '/usr/sbin/ttmkfdir'; +my $ttmkfdir = '/usr/bin/ttmkfdir'; my $fccache = '/usr/bin/fc-cache'; my @font_list; # list of fonts to install |