From fcae5b16938cb8264c9e469b4e1c702fa1374495 Mon Sep 17 00:00:00 2001 From: guidotheelen Date: Wed, 6 May 2020 09:19:25 +0200 Subject: [PATCH] rename SEQUENCE_CHECK_PY --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 05cb300c6..208e965ba 100644 --- a/Makefile +++ b/Makefile @@ -41,7 +41,7 @@ VS_ADDER = add_vs_cmap.py # from nototools EMOJI_SRC_DIR ?= png/128 FLAGS_SRC_DIR := third_party/region-flags/png -CHECK_COVERAGE_PY = check_emoji_sequences.py +SEQUENCE_CHECK_PY = check_emoji_sequences.py BUILD_DIR := build EMOJI_DIR := $(BUILD_DIR)/emoji @@ -225,7 +225,7 @@ $(EMOJI).ttf: check_coverage $(EMOJI).tmpl.ttf $(EMOJI_BUILDER) $(PUA_ADDER) \ check_coverage: ifdef CHECK_COVERAGE - $(PYTHON) $(CHECK_COVERAGE_PY) -d $(EMOJI_SRC_DIR) -c + $(PYTHON) $(SEQUENCE_CHECK_PY) -d $(EMOJI_SRC_DIR) -c @echo -n "Proceed building font? [y/N]" && read ans && [ $${ans:-N} = y ] endif