altos: Broken test for M0 compiler in src/Makefile
authorKeith Packard <keithp@keithp.com>
Tue, 8 Oct 2013 16:39:29 +0000 (09:39 -0700)
committerKeith Packard <keithp@keithp.com>
Tue, 8 Oct 2013 16:39:29 +0000 (09:39 -0700)
Was causing it to try to compiler M0 progs only when *no* compiler was found.

Signed-off-by: Keith Packard <keithp@keithp.com>
src/Makefile

index ae231c64af20a19482965819a36a0ceb77f02223..3e4ed68d4d630180872444c45012bb21b1cccdc1 100644 (file)
@@ -47,7 +47,7 @@ ifeq ($(strip ($HAVE_ARM_M3_CC)),yes)
        SUBDIRS += $(ARMM3DIRS)
 endif
 
-ifneq ($(strip ($HAVE_ARM_M0_CC)),yes)
+ifeq ($(strip ($HAVE_ARM_M0_CC)),yes)
        SUBDIRS += $(ARMM0DIRS)
 endif