diff options
author | Andrew Bartlett <abartlet@samba.org> | 2004-12-28 23:55:58 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:07:41 -0500 |
commit | 2c1e008ee31d71ad777def834454b9cf9e2a715f (patch) | |
tree | 595e6518d41fbbbc7f0aa6b2cd33525567a07ac1 /source4/libads/config.m4 | |
parent | 0a1342f51ee11d1030a4932ee43feec821aa93bf (diff) | |
download | samba-2c1e008ee31d71ad777def834454b9cf9e2a715f.tar.gz samba-2c1e008ee31d71ad777def834454b9cf9e2a715f.tar.bz2 samba-2c1e008ee31d71ad777def834454b9cf9e2a715f.zip |
r4384: Try again to fix compiling against a specified KRB5 library.
The strong feeling I get is that this is just not possible, if as
Fedora has, the MIT installation is in /usr/lib, but this is one step
closer anyway.
Andrew Bartlett
(This used to be commit da4cf53767ca567497c4c7f341795246bb306892)
Diffstat (limited to 'source4/libads/config.m4')
-rw-r--r-- | source4/libads/config.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/libads/config.m4 b/source4/libads/config.m4 index c3f1da6e07..2d78b72d39 100644 --- a/source4/libads/config.m4 +++ b/source4/libads/config.m4 @@ -130,8 +130,8 @@ if test x$with_krb5_support != x"no"; then ################################################# # check for krb5-config from recent MIT and Heimdal kerberos 5 - AC_PATH_PROG(KRB5_CONFIG, $krb5_withval/krb5-config) - AC_MSG_CHECKING(for working $krb5_withval/krb5-config) + KRB5_CONFIG="$krb5_withval/bin/krb5-config" + AC_MSG_CHECKING(for working $krb5_withval/bin/krb5-config) if test -x "$KRB5_CONFIG"; then ac_save_CFLAGS=$CFLAGS CFLAGS="";export CFLAGS |