From 0dbae5c199bd537487402c4d719af3b653c2f74c Mon Sep 17 00:00:00 2001 From: Eberhard Beilharz Date: Tue, 17 Sep 2024 18:28:02 +0200 Subject: [PATCH] fix(core): add missing dependency for core Core depends on `kmc` which in turn depends on `core/include/ldml`. This change adds the missing dependency to the build script and fixes building core from a clean `core` subdirectory. # Keyman Conventional Commit suggestions: # # - Link to a Sentry issue with git trailer: # Fixes: _MODULE_-_ID_ # - Give credit to co-authors: # Co-authored-by: _Name_ <_email_> # - Use imperative, present tense ('attach' not 'attaches', 'attached' etc) # - Don't include a period at the end of the title # - Always include a blank line before trailers # - More: https://github.com/keymanapp/keyman/wiki/Pull-Request-and-Commit-workflow-notes --- developer/src/kmc/build.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/developer/src/kmc/build.sh b/developer/src/kmc/build.sh index a3bf11774a9..a39808a546f 100755 --- a/developer/src/kmc/build.sh +++ b/developer/src/kmc/build.sh @@ -16,6 +16,7 @@ builder_describe "Build Keyman Keyboard Compiler kmc" \ "@/common/include" \ "@/common/web/keyman-version" \ "@/common/web/types" \ + "@/core/include/ldml" \ "@/developer/src/common/web/utils" \ "@/developer/src/kmc-analyze" \ "@/developer/src/kmc-keyboard-info" \