1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
From: Agathe Porte <debian@microjoe.org>
Date: Thu, 4 Nov 2021 21:25:09 +0100
Subject: build-statics.sh: use system ttfautohint
Forwarded: not-needed
---
sources/build-statics.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sources/build-statics.sh b/sources/build-statics.sh
index 1e149db..4c7df7f 100755
--- a/sources/build-statics.sh
+++ b/sources/build-statics.sh
@@ -31,7 +31,7 @@ ttfs=$(ls $TT_DIR/*.ttf)
for font in $ttfs
do
gftools fix-dsig --autofix $font
- python -m ttfautohint $font $font.fix
+ ttfautohint $font $font.fix
[ -f $font.fix ] && mv $font.fix $font
gftools fix-hinting $font
[ -f $font.fix ] && mv $font.fix $font
|