Skip to content

Commit 03e6213

Browse files
authored
Merge pull request #469 from wilywampa/master
Fix parsing of Teensy options with multiple "="s
2 parents 2c1155e + 9533e7a commit 03e6213

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Teensy.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ endif
4343

4444
ifndef PARSE_TEENSY
4545
# result = $(call READ_BOARD_TXT, 'boardname', 'parameter')
46-
PARSE_TEENSY = $(shell grep -v "^\#" "$(BOARDS_TXT)" | grep $(1).$(2) | cut -d = -f 2,3 )
46+
PARSE_TEENSY = $(shell grep -v "^\#" "$(BOARDS_TXT)" | grep $(1).$(2) | cut -d = -f 2- )
4747
endif
4848

4949
# if boards.txt gets modified, look there, else hard code it

0 commit comments

Comments
 (0)