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 <chewi@gentoo.org>
This commit is contained in:
James Le Cuirot 2024-08-06 17:08:08 +01:00
parent a6899d18d3
commit 2d6b5bfef0
No known key found for this signature in database
GPG Key ID: 1226415D00DD3137

View File

@ -31,5 +31,7 @@ src_prepare() {
}
src_configure() {
econf $(use_enable doc)
econf \
$(use_enable doc) \
KRB5_CONFIG="${ESYSROOT}"/usr/bin/krb5-config
}