From d9e0d8a8023febc6d0de0bd39ad482d27be4b4a5 Mon Sep 17 00:00:00 2001 From: Eberhard Beilharz Date: Wed, 8 Mar 2023 16:52:10 +0100 Subject: [PATCH] chore(linux): Rename keyboardprocessor to Keyman Core --- linux/scripts/build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/linux/scripts/build.sh b/linux/scripts/build.sh index b1aa139fe8..81d49f9537 100755 --- a/linux/scripts/build.sh +++ b/linux/scripts/build.sh @@ -1,6 +1,6 @@ #!/bin/bash -# Build Keyman for Linux: keyboardprocessor ibus-keyman +# Build Keyman for Linux: core ibus-keyman # It must be run from the keyman/linux directory @@ -25,7 +25,7 @@ if [[ "${BUILDONLY}" == "no" ]]; then # While we can't pass extra parameters to the configure action # we need these extra commands cd ../core/build/arch/release - echo "reconfiguring keyboardprocessor meson with prefix ${INSTALLDIR}" + echo "reconfiguring Keyman Core meson with prefix ${INSTALLDIR}" meson configure -Dprefix="${INSTALLDIR}" && ninja reconfigure # We need to build core first before we can configure ibus-keyman! @@ -37,7 +37,7 @@ if [[ "${BUILDONLY}" == "no" ]]; then fi if [[ "${CONFIGUREONLY}" == "no" ]]; then - echo "building keyboardprocessor" + echo "building Keyman Core" cd "$BASEDIR" # May 2021: For now, running tests here as well. We could move this elsewhere # in the future if we want to split out the tests, but they run in a couple of seconds