From 81fe1b9c9c2ac8e8e86f7dd3d33e2ada849ca855 Mon Sep 17 00:00:00 2001 From: Benjamin Valentin Date: Mon, 21 Oct 2019 11:04:13 +0200 Subject: [PATCH] makefiles/sam0: fix typo Somehow an additional parenthesis sneaked in. Remove it to fix the Makefile. --- makefiles/boards/sam0.inc.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefiles/boards/sam0.inc.mk b/makefiles/boards/sam0.inc.mk index a9f6895d62..4f9c3e30f6 100644 --- a/makefiles/boards/sam0.inc.mk +++ b/makefiles/boards/sam0.inc.mk @@ -28,7 +28,7 @@ ifeq ($(DEBUG_ADAPTER),dap) PROGRAMMER ?= edbg else ifeq ($(DEBUG_ADAPTER),jlink) # only use JLinkExe if it's installed - ifneq (,$(shell command -v JLinkExe))) + ifneq (,$(shell command -v JLinkExe)) PROGRAMMER ?= jlink else PROGRAMMER ?= openocd