From 2d6b5bfef068d61857adf806e082ff9966d2df3d Mon Sep 17 00:00:00 2001 From: James Le Cuirot Date: Tue, 6 Aug 2024 17:08:08 +0100 Subject: [PATCH] app-crypt/adcli: Fix cross-compiling by pointing to krb5-config location You can set the flags directly, but krb5-config takes precedence, so use that. Signed-off-by: James Le Cuirot --- app-crypt/adcli/adcli-0.9.2.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app-crypt/adcli/adcli-0.9.2.ebuild b/app-crypt/adcli/adcli-0.9.2.ebuild index d4fcead6bfc51..ba038ec845b47 100644 --- a/app-crypt/adcli/adcli-0.9.2.ebuild +++ b/app-crypt/adcli/adcli-0.9.2.ebuild @@ -31,5 +31,7 @@ src_prepare() { } src_configure() { - econf $(use_enable doc) + econf \ + $(use_enable doc) \ + KRB5_CONFIG="${ESYSROOT}"/usr/bin/krb5-config }