From 2b275fd2b1b0fd64abfe03affbb3fee65e36788d Mon Sep 17 00:00:00 2001 From: Sayan Chowdhury Date: Fri, 24 Nov 2023 05:01:48 +0530 Subject: [PATCH] fix Signed-off-by: Sayan Chowdhury --- .../coreos-overlay/sys-boot/shim/shim-9999.ebuild | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/sdk_container/src/third_party/coreos-overlay/sys-boot/shim/shim-9999.ebuild b/sdk_container/src/third_party/coreos-overlay/sys-boot/shim/shim-9999.ebuild index 85d73be186..bd2d42be4d 100644 --- a/sdk_container/src/third_party/coreos-overlay/sys-boot/shim/shim-9999.ebuild +++ b/sdk_container/src/third_party/coreos-overlay/sys-boot/shim/shim-9999.ebuild @@ -21,13 +21,15 @@ LICENSE="BSD" SLOT="0" IUSE="" -BDEPEND="coreos-base/coreos-sb-keys" RDEPEND="" # TODO: Would be ideal to depend on sys-boot/gnu-efi package, but # currently the shim insists on using the bundled copy. This will need # to be addressed by patching this check out after making sure that # our copy of gnu-efi is as usable as the bundled one. -DEPEND="dev-libs/openssl" +DEPEND=" + dev-libs/openssl + coreos-base/coreos-sb-keys +" src_unpack() { cros-workon_src_unpack @@ -50,7 +52,7 @@ src_compile() { elif use arm64; then emake_args+=( ARCH=aarch64 ) fi - emake_args+= ( ENABLE_SBSIGN=1 ) + emake_args+=( ENABLE_SBSIGN=1 ) emake_args+=( VENDOR_CERT_FILE="/usr/share/sb_keys/DB.der" ) emake "${emake_args[@]}" || die }