diff options
author | James Le Cuirot <chewi@gentoo.org> | 2024-08-06 17:08:08 +0100 |
---|---|---|
committer | James Le Cuirot <chewi@gentoo.org> | 2024-08-06 17:18:19 +0100 |
commit | 2d6b5bfef068d61857adf806e082ff9966d2df3d (patch) | |
tree | f0d5ad81e62c0105e8d4ae0a856c56d25d336b92 /app-crypt/adcli | |
parent | net-libs/libtirpc: Fix cross-compiling by pointing to krb5-config location (diff) | |
download | gentoo-2d6b5bfef068d61857adf806e082ff9966d2df3d.tar.gz gentoo-2d6b5bfef068d61857adf806e082ff9966d2df3d.tar.bz2 gentoo-2d6b5bfef068d61857adf806e082ff9966d2df3d.zip |
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>
Diffstat (limited to 'app-crypt/adcli')
-rw-r--r-- | app-crypt/adcli/adcli-0.9.2.ebuild | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app-crypt/adcli/adcli-0.9.2.ebuild b/app-crypt/adcli/adcli-0.9.2.ebuild index d4fcead6bfc5..ba038ec845b4 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 } |