Skip to content

Commit f48a5db

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 <[email protected]>
1 parent bcdcdfc commit f48a5db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/linuxboot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ linuxboot_configure := \
3535
if [ "$(linuxboot_board)" = "qemu" ]; then \
3636
echo >&2 "Pre-building edk2 OVMF" ; \
3737
( cd $(build)/$(linuxboot_base_dir)/edk2/OvmfPkg ; \
38-
./build.sh -n $$CPUS \
38+
./build.sh -n $(CPUS) \
3939
) || exit 1 ; \
4040
fi ; \
4141
touch .config ; \

0 commit comments

Comments
 (0)