From 13d9aa9db30e682b0042f91e4da7d1dfbeaac69c Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Tue, 19 Jul 2022 13:35:42 +0200 Subject: [PATCH] backport "Build up $(COMMON_FLAGS) line-by-line " Signed-off-by: Thomas Lamprecht --- debian/rules | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/debian/rules b/debian/rules index 8fd8d3e..0a19f19 100755 --- a/debian/rules +++ b/debian/rules @@ -19,7 +19,9 @@ ifeq ($(DEB_BUILD_ARCH),arm64) EDK2_BUILD_ARCH=AARCH64 endif -COMMON_FLAGS = -DNETWORK_HTTP_BOOT_ENABLE=TRUE -DNETWORK_TLS_ENABLE -DSECURE_BOOT_ENABLE=TRUE +COMMON_FLAGS = -DNETWORK_HTTP_BOOT_ENABLE=TRUE +COMMON_FLAGS += -DNETWORK_TLS_ENABLE +COMMON_FLAGS += -DSECURE_BOOT_ENABLE=TRUE OVMF_COMMON_FLAGS = $(COMMON_FLAGS) -DTPM_ENABLE=TRUE OVMF_2M_FLAGS = $(OVMF_COMMON_FLAGS) -DFD_SIZE_2MB OVMF_4M_FLAGS = $(OVMF_COMMON_FLAGS) -DFD_SIZE_4MB