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