Fix parsing of Teensy options with multiple "="s
This commit is contained in:
parent
2c1155e156
commit
9533e7a392
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue