summaryrefslogtreecommitdiff
path: root/scripts/lib/fontbuild/Build.py
diff options
context:
space:
mode:
authorJames Godfrey-Kittle <jamesgk@google.com>2015-02-18 10:19:59 -0800
committerJames Godfrey-Kittle <jamesgk@google.com>2015-04-16 12:16:30 -0700
commit617933d6ed691a914d4a13dd9898cc0ab6475163 (patch)
treedf4aa33e48a9709ac06aebac9a293d70e2fe201b /scripts/lib/fontbuild/Build.py
parent4b6f8d9a34d1f20cdc0cd29a761ca875820761f4 (diff)
Use same AGL version as the FDK.
The FDK uses an outdated glyph list: https://github.com/adobe-type-tools/afdko/blob/master/FDK/Tools/Programs/public/lib/resource/agl2uv.h
Diffstat (limited to 'scripts/lib/fontbuild/Build.py')
-rw-r--r--scripts/lib/fontbuild/Build.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/fontbuild/Build.py b/scripts/lib/fontbuild/Build.py
index 7cb4963..bb04902 100644
--- a/scripts/lib/fontbuild/Build.py
+++ b/scripts/lib/fontbuild/Build.py
@@ -33,7 +33,7 @@ class FontProject:
self.ot_kerningclasses = open(self.basedir + "/" + self.config.get("res","ot_kerningclassesfile")).read()
self.ot_features = open(self.basedir + "/" + self.config.get("res","ot_featuresfile")).read()
adobeGlyphList = open(self.basedir + "/" + self.config.get("res", "agl_glyphlistfile")).readlines()
- self.adobeGlyphList = set([line.split(";")[0] for line in adobeGlyphList if not line.startswith("#")])
+ self.adobeGlyphList = set([line.split(";")[1] for line in adobeGlyphList if not line.startswith("#")])
self.builddir = "out"
self.decompose = self.config.get("glyphs","decompose").split()