Skip to content

Commit 54b862a

Browse files
committed
modules/linuxboot: Fix qemu build after c745640
> Running edk2 build for OvmfPkgX64 > Usage: build.exe [options] [all|fds|genc|genmake|clean|cleanall|cleanlib|modules|libraries|run] > > build.exe: error: option -n: invalid integer value: 'PUS' Signed-off-by: Nathan Rennie-Waldock <nathan.renniewaldock@gmail.com>
1 parent bb3df89 commit 54b862a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

modules/linuxboot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ linuxboot_configure := \
2121
if [ "$(linuxboot_board)" = "qemu" ]; then \
2222
echo >&2 "Pre-building edk2 OVMF" ; \
2323
( cd $(build)/$(linuxboot_base_dir)/edk2/OvmfPkg ; \
24-
./build.sh -n $$CPUS \
24+
./build.sh -n $(CPUS) \
2525
) || exit 1 ; \
2626
fi ; \
2727
touch .config ; \

0 commit comments

Comments
 (0)