From ff238359feccfa022a6679c6824e54238609c504 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Wed, 24 Nov 2021 20:40:57 -0500 Subject: [PATCH] spelling: configure Part of #2256 * compatibility * sourceable Change-Id: I7d5edd8e81e01f45f76f775aa5320ca92023b132 Signed-off-by: Josh Soref Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/10399 Community-CI: Broadcom CI Community-CI: Mellanox Build Bot Reviewed-by: Karol Latecki Reviewed-by: Shuhei Matsumoto Reviewed-by: Tomasz Zawadzki Tested-by: SPDK CI Jenkins --- configure | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure b/configure index 8724c61a1..772293f37 100755 --- a/configure +++ b/configure @@ -115,7 +115,7 @@ function usage() { } # Load default values -# Convert config to sourcable configuration file +# Convert config to sourceable configuration file sed -r 's/CONFIG_([[:alnum:]_]+)=(.*)/CONFIG[\1]=\2/g' $rootdir/CONFIG > $rootdir/CONFIG.sh declare -A CONFIG source $rootdir/CONFIG.sh @@ -526,7 +526,7 @@ if [[ "${CONFIG[IDXD]}" = "y" ]]; then cpu_vendor=$(grep -i 'vendor' /proc/cpuinfo --max-count=1) fi if [[ "$cpu_vendor" != *"$intel"* ]]; then - echo "ERROR: IDXD cannot be used due to CPU incompatiblity." + echo "ERROR: IDXD cannot be used due to CPU incompatibility." exit 1 fi if [ -e /usr/include/accel-config/libaccel_config.h ]; then @@ -538,7 +538,7 @@ fi # Detect architecture and force no ISA-L if non-x86 or non-aarch64 architecture if [[ "${CONFIG[ISAL]}" = "y" ]]; then if [[ $arch != x86_64* ]] && [[ $arch != aarch64* ]]; then - echo "ERROR: ISA-L cannot be used due to CPU incompatiblity." + echo "ERROR: ISA-L cannot be used due to CPU incompatibility." exit 1 fi fi