From 126a24fc4a973c300b9239a6d52931812ee2af90 Mon Sep 17 00:00:00 2001 From: Wojciech Sipak Date: Sun, 14 Sep 2025 17:37:18 +0200 Subject: [PATCH] fix order of operations in configure.sh CMake targets used in "generate symbols" depend on data/categories.txt file. Let's generate the file first. --- configure.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/configure.sh b/configure.sh index b4ec5b7ed..8c81a157e 100755 --- a/configure.sh +++ b/configure.sh @@ -106,6 +106,9 @@ else echo "Skipping world map download..." fi +echo "Generating search categories / synonyms..." +./tools/unix/generate_categories.sh + if [ -z "$SKIP_GENERATE_SYMBOLS" ]; then if Diff data/symbols_hash data/styles/*/*/symbols/* || [ ! -z "$SYMBOLS_NOT_GENERATED" ]; then echo "Generating symbols..." @@ -124,6 +127,4 @@ else echo "Skipping generate drules..." fi -./tools/unix/generate_categories.sh - echo "The repository is configured for development."