summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormrmcwethy <mrmcwethy@yahoo.com>2018-06-29 12:22:31 -0700
committermrmcwethy <mrmcwethy@yahoo.com>2018-06-29 12:22:31 -0700
commitdf4469f92ba75271c8fb6801eead675f9f440040 (patch)
treee37ac30b10a5ff35cf81e89ce0afd9ca8172df9a
parenta405892d8a59004171f3fd17d02f83002cb07f1a (diff)
Test the BOARD parameter for nullness; display a error if nothing provided
-rw-r--r--ports/atmel-samd/Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/ports/atmel-samd/Makefile b/ports/atmel-samd/Makefile
index b7181aa3b..678ddffa3 100644
--- a/ports/atmel-samd/Makefile
+++ b/ports/atmel-samd/Makefile
@@ -4,9 +4,12 @@ PYTHON3 ?= python3
# Select the board to build for: if not given on the command line,
# then default to PYBV10.
-BOARD ?= metro_m0_express
-ifeq ($(wildcard boards/$(BOARD)/.),)
-$(error Invalid BOARD specified)
+ifeq ($(BOARD),)
+ $(error You must provide a BOARD parameter)
+else
+ ifeq ($(wildcard boards/$(BOARD)/.),)
+ $(error Invalid BOARD specified)
+ endif
endif