diff options
| author | leo chung <gewalalb@gmail.com> | 2021-06-02 10:27:27 +0800 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2021-06-04 01:04:35 +1000 |
| commit | fad0efdcf277dcc5698d59445074f4ee806d7976 (patch) | |
| tree | 019bebeee9275194820349acba11ab00588c52b4 | |
| parent | 53fea8598e86285e25194735cfc0c2f31cef57a1 (diff) | |
esp32/Makefile: Fix wrong target for partition-table.bin.
"$(BUILD)/partition_table/partition -table.bin" is typing mistake.
Signed-off-by: leo chung <gewalalb@gmail.com>
| -rw-r--r-- | ports/esp32/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/esp32/Makefile b/ports/esp32/Makefile index 5a40cd956..506522163 100644 --- a/ports/esp32/Makefile +++ b/ports/esp32/Makefile @@ -38,7 +38,7 @@ all: $(BUILD)/micropython.bin \ $(BUILD)/firmware.bin -$(BUILD)/bootloader/bootloader.bin $(BUILD)/partition_table/partition -table.bin $(BUILD)/micropython.bin: FORCE +$(BUILD)/bootloader/bootloader.bin $(BUILD)/partition_table/partition-table.bin $(BUILD)/micropython.bin: FORCE clean: idf.py $(IDFPY_FLAGS) fullclean |
