Strip extra whitespace from the variable. Fixes #57
This commit is contained in:
parent
ca49da9f1d
commit
70986c14f6
2 changed files with 4 additions and 0 deletions
|
@ -7,6 +7,7 @@ The following is the rough list of changes that went into different versions. I
|
||||||
- Add USB_VID and USB_PID to CPPFLAGS only if the board is Leonardo.
|
- Add USB_VID and USB_PID to CPPFLAGS only if the board is Leonardo.
|
||||||
- Allow adding extra common dependencies (COMMON_DEPS) (https://github.com/gaftech)
|
- Allow adding extra common dependencies (COMMON_DEPS) (https://github.com/gaftech)
|
||||||
- Added ifndef ARDUINO_VAR_PATH for compiling for the attiny (https://github.com/danielesteban)
|
- Added ifndef ARDUINO_VAR_PATH for compiling for the attiny (https://github.com/danielesteban)
|
||||||
|
- Strip extra whitespace from the `BOARD_TAG` variable
|
||||||
|
|
||||||
### 0.10.4 (2013-05-31) @matthijskooijman
|
### 0.10.4 (2013-05-31) @matthijskooijman
|
||||||
- Improved BAUD_RATE detection logic
|
- Improved BAUD_RATE detection logic
|
||||||
|
|
|
@ -394,6 +394,9 @@ ifndef BOARD_TAG
|
||||||
BOARD_TAG = uno
|
BOARD_TAG = uno
|
||||||
$(call show_config_variable,BOARD_TAG,[DEFAULT])
|
$(call show_config_variable,BOARD_TAG,[DEFAULT])
|
||||||
else
|
else
|
||||||
|
# Strip the board tag of any extra whitespace, since it was causing the makefile to fail
|
||||||
|
# https://github.com/sudar/Arduino-Makefile/issues/57
|
||||||
|
BOARD_TAG := $(strip $(BOARD_TAG))
|
||||||
$(call show_config_variable,BOARD_TAG)
|
$(call show_config_variable,BOARD_TAG)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue