diff options
author | Keith Packard <keithp@keithp.com> | 2013-10-08 09:39:29 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2013-10-08 09:39:29 -0700 |
commit | f7cccbb7a624a2a47b21682f416a135a28319b41 (patch) | |
tree | 784829a13e0dd28c3bb8ffe4c8f8dd0591cc4135 | |
parent | 488a527267decece48e6682e0e0c7fc29cbed329 (diff) |
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 <keithp@keithp.com>
-rw-r--r-- | src/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
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 |