1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

makefiles/sam0: fix typo

Somehow an additional parenthesis sneaked in. Remove it to fix the Makefile.
This commit is contained in:
Benjamin Valentin 2019-10-21 11:04:13 +02:00
parent 29e5c3af67
commit 81fe1b9c9c

View File

@ -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