Skip to content

Commit 2326da3

Browse files
committed
Merge pull request #403 from sej7278/master
Removed the check for BOOTLOADER_PATH being empty Tested on 1.0.5 and 1.6.7, last commit of 2015?
2 parents 7e6a3e2 + c67f505 commit 2326da3

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

Arduino.mk

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1358,10 +1358,8 @@ endif
13581358

13591359
# Bootloader file settings
13601360
ifndef AVRDUDE_ISP_BURN_BOOTLOADER
1361-
ifneq ($(strip $(BOOTLOADER_PATH)),)
1362-
ifneq ($(strip $(BOOTLOADER_FILE)),)
1363-
AVRDUDE_ISP_BURN_BOOTLOADER += -U flash:w:$(BOOTLOADER_PARENT)/$(BOOTLOADER_PATH)/$(BOOTLOADER_FILE):i
1364-
endif
1361+
ifneq ($(strip $(BOOTLOADER_FILE)),)
1362+
AVRDUDE_ISP_BURN_BOOTLOADER += -U flash:w:$(BOOTLOADER_PARENT)/$(BOOTLOADER_PATH)/$(BOOTLOADER_FILE):i
13651363
endif
13661364
endif
13671365

HISTORY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ I tried to give credit whenever possible. If I have missed anyone, kindly add it
2323
- Fix: Rename VENDOR to ARDMK_VENDOR to workaround tcsh issue (Issue #386) (https://github.com/sej7278)
2424
- Fix: Document OSX 1.0/1.6 ARDUINO_DIR differences (https://github.com/thomaskilian)
2525
- Fix: Fix regex to support BOARD_TAGs with hyphens e.g. attiny44-20 (https://github.com/sej7278)
26+
- Fix: Remove check for BOOTLOADER_PATH, just check for BOOTLOADER_FILE (Issue #402) (https://github.com/sej7278)
2627

2728
### 1.5 (2015-04-07)
2829
- New: Add support for new 1.5.x library layout (Issue #275) (https://github.com/lukasz-e)

0 commit comments

Comments
 (0)