Skip to content

Commit

Permalink
Fix parsing of Teensy options with multiple "="s
Browse files Browse the repository at this point in the history
  • Loading branch information
wilywampa committed Nov 12, 2016
1 parent 2c1155e commit 9533e7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Teensy.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9533e7a

Please sign in to comment.