Minor tweaks to the build tests to ensure that they will operate properly on all systems.

This commit is contained in:
Dean Camera 2012-05-13 15:03:56 +00:00
parent 998009c490
commit 0a00ee4037
3 changed files with 7 additions and 5 deletions

View file

@ -31,7 +31,7 @@ testbootloaders:
do \
build_cfg=`echo $$line | sed 's/ //g' | grep -v "#"`; \
\
if ( ! test -z "$$build_cfg" ); then \
if ( test -n "$$build_cfg" ); then \
build_bootloader=`echo $$build_cfg | cut -d'=' -f1`; \
build_arch=`echo $$build_cfg | cut -d'=' -f2- | cut -d':' -f1`; \
build_mcu=`echo $$build_cfg | cut -d'=' -f2- | cut -d':' -f2`; \