From f7cccbb7a624a2a47b21682f416a135a28319b41 Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Tue, 8 Oct 2013 09:39:29 -0700 Subject: [PATCH 1/1] altos: Broken test for M0 compiler in src/Makefile Was causing it to try to compiler M0 progs only when *no* compiler was found. Signed-off-by: Keith Packard --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index ae231c64..3e4ed68d 100644 --- a/src/Makefile +++ b/src/Makefile @@ -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 -- 2.30.2