From adbd6532f9877b646d41f039cc1fd4cdd787d54b Mon Sep 17 00:00:00 2001
From: Andreas Lohr <andr3as.lohr@gmail.com>
Date: Sun, 7 Oct 2012 10:28:10 +0200
Subject: [PATCH] set USB_VID and USB_PID only for leonardo boards

---
 arduino-mk/Arduino.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/arduino-mk/Arduino.mk b/arduino-mk/Arduino.mk
index 09819ac..450e482 100644
--- a/arduino-mk/Arduino.mk
+++ b/arduino-mk/Arduino.mk
@@ -401,6 +401,7 @@ ifndef F_CPU
 F_CPU = $(shell $(PARSE_BOARD_CMD) $(BOARD_TAG) build.f_cpu)
 endif
 
+ifeq ($(VARIANT),leonardo) 
 # USB IDs for the Leonardo
 ifndef USB_VID
 USB_VID = $(shell $(PARSE_BOARD_CMD) $(BOARD_TAG) build.vid)
@@ -409,6 +410,7 @@ endif
 ifndef USB_PID
 USB_PID = $(shell $(PARSE_BOARD_CMD) $(BOARD_TAG) build.pid)
 endif
+endif
 
 # normal programming info
 ifndef AVRDUDE_ARD_PROGRAMMER