aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Niehus <jacob.niehus@gmail.com>2016-11-12 14:56:48 -0700
committerJacob Niehus <jacob.niehus@gmail.com>2016-11-12 14:56:48 -0700
commit9533e7a392f78bce8a0f7c4c42648dcf6a89b12b (patch)
treeac78852242165803e5ef7c9af25e9dc67e2cbad8
parent2c1155e156ac0cbfb5c02033efb841597c5004f0 (diff)
Fix parsing of Teensy options with multiple "="s
-rw-r--r--Teensy.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/Teensy.mk b/Teensy.mk
index ffd3a6b..1d72976 100644
--- a/Teensy.mk
+++ b/Teensy.mk
@@ -43,7 +43,7 @@ endif
ifndef PARSE_TEENSY
# result = $(call READ_BOARD_TXT, 'boardname', 'parameter')
- PARSE_TEENSY = $(shell grep -v "^\#" "$(BOARDS_TXT)" | grep $(1).$(2) | cut -d = -f 2,3 )
+ PARSE_TEENSY = $(shell grep -v "^\#" "$(BOARDS_TXT)" | grep $(1).$(2) | cut -d = -f 2- )
endif
# if boards.txt gets modified, look there, else hard code it