From 07b65d10f1a6ba5f082641d29d0cc7c902d60459 Mon Sep 17 00:00:00 2001 From: Abdelatif Guettouche Date: Wed, 10 Mar 2021 08:54:21 +0100 Subject: [PATCH] tools/esp32/Config.mk: Revert part of "Don't abort make when QEMU script fails" Signed-off-by: Abdelatif Guettouche --- tools/esp32/Config.mk | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/tools/esp32/Config.mk b/tools/esp32/Config.mk index e153c39877..d814505ea3 100644 --- a/tools/esp32/Config.mk +++ b/tools/esp32/Config.mk @@ -70,11 +70,7 @@ ifdef ESPTOOL_BINDIR endif ifeq ($(CONFIG_ESP32_QEMU_IMAGE),y) - # The "echo" part makes sure that the QEMU script doesn't abort the rest of - # the make process. So, if the script fails, the help message is printed. - - MK_QEMU_IMG=$(TOPDIR)/tools/esp32/mk_qemu_img.sh -b $(BOOTLOADER) -p $(PARTITION_TABLE) \ - || echo "Try make ESPTOOL_BINDIR=bins_path" + MK_QEMU_IMG=$(TOPDIR)/tools/esp32/mk_qemu_img.sh -b $(BOOTLOADER) -p $(PARTITION_TABLE) else MK_QEMU_IMG= endif