From b85dadee76d35e851eb6a4828dd0c5a132c96a5f Mon Sep 17 00:00:00 2001 From: Devon Bautista Date: Wed, 23 Dec 2020 14:30:38 -0800 Subject: [PATCH] modules/linuxboot: $$CPUS --> $(CPUS) --- modules/linuxboot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/linuxboot b/modules/linuxboot index 19edcc4e..b95dad67 100644 --- a/modules/linuxboot +++ b/modules/linuxboot @@ -21,7 +21,7 @@ linuxboot_configure := \ if [ "$(linuxboot_board)" = "qemu" ]; then \ echo >&2 "Pre-building edk2 OVMF" ; \ ( cd $(build)/$(linuxboot_base_dir)/edk2/OvmfPkg ; \ - ./build.sh -n $$CPUS \ + ./build.sh -n $(CPUS) \ ) || exit 1 ; \ fi ; \ touch .config ; \