From afc1c4b77dfa8feaa4e69cfa280f10d0ac7f6d67 Mon Sep 17 00:00:00 2001 From: Chris Dimich Date: Fri, 20 Mar 2020 15:15:19 -0700 Subject: [PATCH] linux-boundary: Fix bberror message Fix syntax error in bberror message Signed-off-by: Chris Dimich --- recipes-kernel/linux/linux-boundary_4.14.x.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-kernel/linux/linux-boundary_4.14.x.bb b/recipes-kernel/linux/linux-boundary_4.14.x.bb index e839ada..959de1b 100644 --- a/recipes-kernel/linux/linux-boundary_4.14.x.bb +++ b/recipes-kernel/linux/linux-boundary_4.14.x.bb @@ -24,7 +24,7 @@ do_copy_default_config() { if [ -f ${S}/arch/${ARCH}/configs/${KERNEL_DEFCONFIG} ]; then cp ${S}/arch/${ARCH}/configs/${KERNEL_DEFCONFIG} ${WORKDIR}/defconfig else - bberror "KERNEL_DEFCONFIG does not exist!" Please set a valid KERNEL_DEFCONFIG" + bberror "KERNEL_DEFCONFIG does not exist! Please set a valid KERNEL_DEFCONFIG" fi fi }