---

Hi,

I've encountered build failures when compiling with a different --host
triplet.  The krb5-config command would use /usr/bin/krb5-config instead
of the host-prefixed version for that target.  Using AC_PATH_TOOL in
configure.ac addresses this.  Can this change be applied?

Thanks.

David

 src/external/krb5.m4 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/external/krb5.m4 b/src/external/krb5.m4
index 8fc9096..b844c2f 100644
--- a/src/external/krb5.m4
+++ b/src/external/krb5.m4
@@ -9,7 +9,7 @@ if test x$KRB5_CFLAGS != x; then
     KRB5_PASSED_CFLAGS=$KRB5_CFLAGS
 fi
 
-AC_PATH_PROG(KRB5_CONFIG, krb5-config)
+AC_PATH_TOOL(KRB5_CONFIG, krb5-config)
 AC_MSG_CHECKING(for working krb5-config)
 if test -x "$KRB5_CONFIG"; then
   KRB5_CFLAGS="`$KRB5_CONFIG --cflags`"
-- 
2.7.4
_______________________________________________
sssd-devel mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to