From 28f31d4694ad212d9b511c53ba35c6443eeef972 Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN" Date: Sun, 11 Dec 2022 14:49:49 +0100 Subject: [PATCH] package/optee-client: fix util-linux dependency When applying 917a961d9c77 (package/optee-client: bump to version 3.19.0), a last-minute change was made in Config.in to change the dependency to util-linux instead of util-linux-libs, but the counterpart to that change in the .mk was omitted. Fix that now. Reported-by: Thomas Petazzoni Signed-off-by: Yann E. MORIN --- package/optee-client/optee-client.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/optee-client/optee-client.mk b/package/optee-client/optee-client.mk index 3e0c9269b8..311ca191b0 100644 --- a/package/optee-client/optee-client.mk +++ b/package/optee-client/optee-client.mk @@ -27,7 +27,7 @@ OPTEE_CLIENT_CONF_OPTS += -DCFG_TEE_SUPP_PLUGINS=OFF endif ifeq ($(BR2_PACKAGE_OPTEE_CLIENT_TEEACL),y) -OPTEE_CLIENT_EXT_DEPENDENCIES += host-pkgconf util-linux-libs +OPTEE_CLIENT_EXT_DEPENDENCIES += host-pkgconf util-linux OPTEE_CLIENT_CONF_OPTS += -DWITH_TEEACL=ON else OPTEE_CLIENT_CONF_OPTS += -DWITH_TEEACL=OFF