Fix parens on PARSE_BOARDS call.

This commit is contained in:
Christopher Peplin 2013-07-08 10:44:26 -04:00
parent b6284f802e
commit 800e2099fd

View file

@ -523,11 +523,11 @@ ifeq ($(strip $(NO_CORE)),)
ifeq ($(VARIANT),leonardo) ifeq ($(VARIANT),leonardo)
# USB IDs for the Leonardo # USB IDs for the Leonardo
ifndef USB_VID ifndef USB_VID
USB_VID = $(call PARSE_BOARD,$(BOARD_TAG,build.vid)) USB_VID = $(call PARSE_BOARD,$(BOARD_TAG),build.vid)
endif endif
ifndef USB_PID ifndef USB_PID
USB_PID = $(call PARSE_BOARD,$(BOARD_TAG,build.pid)) USB_PID = $(call PARSE_BOARD,$(BOARD_TAG),build.pid)
endif endif
endif endif