From 18c972f61a045c49b0fcf7ed8f5d4497fe602118 Mon Sep 17 00:00:00 2001 From: James Le Cuirot Date: Tue, 6 Aug 2024 17:26:34 +0100 Subject: [PATCH] sys-auth/realmd: Fix cross-compiling by pointing to krb5-config location pkg-config is usually preferable, but this simpler approach works here because krb5-config is a shell script and the headers and libraries are in standard paths. It was previously relying on a wrapper we were creating. It still works without that, but only because krb5-config also exists on the host, and we shouldn't assume that. Signed-off-by: James Le Cuirot --- .../coreos-overlay/sys-auth/realmd/realmd-0.17.0-r2.ebuild | 1 + 1 file changed, 1 insertion(+) diff --git a/sdk_container/src/third_party/coreos-overlay/sys-auth/realmd/realmd-0.17.0-r2.ebuild b/sdk_container/src/third_party/coreos-overlay/sys-auth/realmd/realmd-0.17.0-r2.ebuild index 753b4c36a1..f7bf88bf2a 100644 --- a/sdk_container/src/third_party/coreos-overlay/sys-auth/realmd/realmd-0.17.0-r2.ebuild +++ b/sdk_container/src/third_party/coreos-overlay/sys-auth/realmd/realmd-0.17.0-r2.ebuild @@ -54,6 +54,7 @@ src_configure() { --with-distro=defaults --disable-doc --disable-nls + KRB5_CONFIG="${ESYSROOT}"/usr/bin/krb5-config ) econf "${myconf[@]}" }