diff options
author | Daniel Stenberg <daniel@haxx.se> | 2015-04-26 17:04:18 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2015-04-26 17:04:18 +0200 |
commit | aa8f613e98c21f70cfa34f0756be24eee47b0647 (patch) | |
tree | 6e70ecfc482cacfd4f05bf4703f2bf085454658e /configure.ac | |
parent | aff153f83afb4e4f255f13b40e081ecf5753664b (diff) |
configure: follow-up fix for krb5-config
commit 5b66860652 was incomplete so here's a follow-up fix
Reported-by: Dagobert Michelsen
Bug: https://github.com/bagder/curl/commit/5b668606527613179d0349f21b4ab0df2971e3d2#commitcomment-10473445
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index e676ff392..bfce862d3 100644 --- a/configure.ac +++ b/configure.ac @@ -1194,8 +1194,6 @@ if test x"$want_gss" = xyes; then if test -z "$GSSAPI_INCS"; then if test -n "$host_alias" -a -f "$GSSAPI_ROOT/bin/$host_alias-krb5-config"; then GSSAPI_INCS=`$GSSAPI_ROOT/bin/$host_alias-krb5-config --cflags gssapi` - elif test -f "$GSSAPI_ROOT/bin/krb5-config"; then - GSSAPI_INCS=`$GSSAPI_ROOT/bin/krb5-config --cflags gssapi` elif test -f "$KRB5CONFIG"; then GSSAPI_INCS=`$KRB5CONFIG --cflags gssapi` elif test "$GSSAPI_ROOT" != "yes"; then |