From 1bc0eea143c59ce74f4014e3ab1aca526a440f78 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Mon, 10 Jul 2017 10:39:31 -0600 Subject: [PATCH] tools/tesbuild.sh: Fix missing $ before variable name. --- tools/testbuild.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/testbuild.sh b/tools/testbuild.sh index a625f3d8a8d..9d363563b40 100755 --- a/tools/testbuild.sh +++ b/tools/testbuild.sh @@ -221,7 +221,7 @@ function configure { if [ "X$toolchain" != "X" ]; then setting=`grep TOOLCHAIN $nuttx/.config | grep -v CONFIG_ARCH_TOOLCHAIN_GNU=y | grep =y` varname=`echo $setting | cut -d'=' -f1` - if [ ! -z "varname" ]; then + if [ ! -z "$varname" ]; then echo " Disabling $varname" kconfig-tweak --file $nuttx/.config --disable $varname fi