mirror of
https://github.com/apache/nuttx.git
synced 2026-05-15 21:19:09 +08:00
tools/tesbuild.sh: Fix missing $ before variable name.
This commit is contained in:
+1
-1
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user