u-boot: ccimx6sbc: fix script test of temp variable

install_abort is a temp variable so 'test -n' doesn't work on it.
This was fixed in all scripts except the USB script of ccimx6sbc.

Signed-off-by: Hector Palacios <hector.palacios@digi.com>
This commit is contained in:
Hector Palacios 2021-06-15 11:53:03 +02:00
parent ec0341358a
commit 6b17713b10
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ for install_f in ${INSTALL_UBOOT_FILENAME} ${INSTALL_LINUX_FILENAME} ${INSTALL_R
install_abort=1; install_abort=1;
fi; fi;
done done
if test -n "${install_abort}"; then if test "${install_abort}" = "1"; then
echo "Aborted."; echo "Aborted.";
exit; exit;
fi fi