diff options
author | Nico Huber <nico.h@gmx.de> | 2024-04-16 23:35:28 +0200 |
---|---|---|
committer | Maximilian Brune <maximilian.brune@9elements.com> | 2024-04-17 14:00:24 +0000 |
commit | 28a147e116210e4a239599d09a0ec3754ddbd912 (patch) | |
tree | 3a40cc29fdca924906c894a90742feea5ea255f3 /payloads/external/Makefile.mk | |
parent | abc3812365d1ceeef7742ad1e97b44d35c07beda (diff) |
payloads/external: Call $(strip_quotes ) on prebuilt iPXE path
Currently, we keep the double-quotes from Kconfig, resulting in an
invalid path. So just call `strip_quotes` like we do with all other
paths from Kconfig.
Change-Id: Ibcaa59be0fdd84d1fb9e061394fd9b0f7aa1830b
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/81947
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@mailbox.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'payloads/external/Makefile.mk')
-rw-r--r-- | payloads/external/Makefile.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/payloads/external/Makefile.mk b/payloads/external/Makefile.mk index 9b79f1a3fa..5d385a4e82 100644 --- a/payloads/external/Makefile.mk +++ b/payloads/external/Makefile.mk @@ -344,7 +344,7 @@ payloads/external/Memtest86Plus/$(memtest_dir)/memtest: $(DOTCONFIG) PXE_ROM_PCI_ID:=$(subst $(comma),,$(CONFIG_PXE_ROM_ID)) ifeq ($(CONFIG_PXE_ROM),y) -PXE_ROM_FILE:=$(CONFIG_PXE_ROM_FILE) +PXE_ROM_FILE:=$(call strip_quotes,$(CONFIG_PXE_ROM_FILE)) endif ifeq ($(CONFIG_BUILD_IPXE),y) PXE_ROM_FILE:=payloads/external/iPXE/ipxe/ipxe.rom |