diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-05-13 15:03:56 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-05-13 15:03:56 +0000 |
commit | 0a00ee403732be3925bf68c755823b93dfb3169d (patch) | |
tree | 1c9aa891ecc263b98c2bff77c5adae82e1c623e3 /BuildTests/BootloaderTest/makefile | |
parent | 998009c490409ed4419d3f3d6e43313826bc1796 (diff) | |
download | lufa-0a00ee403732be3925bf68c755823b93dfb3169d.tar.gz lufa-0a00ee403732be3925bf68c755823b93dfb3169d.tar.bz2 lufa-0a00ee403732be3925bf68c755823b93dfb3169d.zip |
Minor tweaks to the build tests to ensure that they will operate properly on all systems.
Diffstat (limited to 'BuildTests/BootloaderTest/makefile')
-rw-r--r-- | BuildTests/BootloaderTest/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BuildTests/BootloaderTest/makefile b/BuildTests/BootloaderTest/makefile index 3a6e5574c..7ce56c49f 100644 --- a/BuildTests/BootloaderTest/makefile +++ b/BuildTests/BootloaderTest/makefile @@ -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`; \
|