From 3dc4672bc6a16011a1c3dc8f9a6dcd84a7704903 Mon Sep 17 00:00:00 2001 From: Trammell hudson Date: Wed, 2 May 2018 15:46:30 -0400 Subject: [PATCH] fix path to edk2/OvmfPkg for qemu-linuxboot board (#394) --- modules/linuxboot | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/linuxboot b/modules/linuxboot index f5d30e02..cad8bf06 100644 --- a/modules/linuxboot +++ b/modules/linuxboot @@ -20,8 +20,9 @@ linuxboot_configure := \ || exit 1 ; \ if [ "$(linuxboot_board)" = "qemu" ]; then \ echo >&2 "Pre-building edk2 OVMF" ; \ - ( cd edk2/OvmfPkg ; ./build.sh -n `nproc` ) \ - || exit 1 ; \ + ( cd $(build)/$(linuxboot_base_dir)/edk2/OvmfPkg ; \ + ./build.sh -n `nproc` \ + ) || exit 1 ; \ fi ; \ touch .config ; \