fix path to edk2/OvmfPkg for qemu-linuxboot board (#394)

This commit is contained in:
Trammell hudson 2018-05-02 15:46:30 -04:00
parent a1eae9111f
commit 3dc4672bc6
Failed to extract signature

View File

@ -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 ; \