From 6f536af9a187e8bf364339aeb1033cda54661690 Mon Sep 17 00:00:00 2001 From: Cyano Hao Date: Thu, 3 Sep 2020 16:48:43 +0800 Subject: [PATCH] update global font target --- configure.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.py b/configure.py index 64de755..959f549 100644 --- a/configure.py +++ b/configure.py @@ -941,7 +941,7 @@ def powerset(lst): return reduce(lambda result, x: result + makefile["rule"]["GlobalFont"]["depend"].append(font) makefile["rule"][font] = { - "depend": ["build/nowar/{}.otf".format(GenerateFilename(param))], + "depend": ["build/final-otf/{}.otf".format(GenerateFilename(param))], "command": [ "mkdir -p out/GlobalFont/", "cp $^ $@", @@ -949,7 +949,7 @@ def powerset(lst): return reduce(lambda result, x: result + } # naming test - for w, r, wd, fea in product(config.globalFontWeight, ["CN", "CL"], [3, 5, 7, 10], [[], ["UI", "OSF", "SC", "RP", "Simp"]]): + for w, r, wd, fea in product(config.globalFontWeight, ["CN", "CL"], [3, 5, 7], [[], ["UI", "OSF", "SC", "RP", "Simp"]]): param = { "family": "Nowar", "weight": w, @@ -963,7 +963,7 @@ def powerset(lst): return reduce(lambda result, x: result + makefile["rule"]["NamingTest"]["depend"].append(font) makefile["rule"][font] = { - "depend": ["build/nowar/{}.otf".format(GenerateFilename(param))], + "depend": ["build/final-otf/{}.otf".format(GenerateFilename(param))], "command": [ "mkdir -p out/NamingTest/", "cp $^ $@",