From: Keith Packard Date: Tue, 8 Oct 2013 16:39:29 +0000 (-0700) Subject: altos: Broken test for M0 compiler in src/Makefile X-Git-Tag: 1.2.9.4~56 X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=commitdiff_plain;h=f7cccbb7a624a2a47b21682f416a135a28319b41;hp=488a527267decece48e6682e0e0c7fc29cbed329 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 --- 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