diff options
author | Karl Ramm <kcr@1ts.org> | 2013-10-13 23:37:13 -0400 |
---|---|---|
committer | Karl Ramm <kcr@1ts.org> | 2013-10-13 23:37:13 -0400 |
commit | 70e8a0e0f084cdfd50e234d8d80fabaeb39c68c6 (patch) | |
tree | b1af74dbe7d75624281906e485ce02c96eb045ac | |
parent | e3fbd7f544cdfa04cc5a19b05f71f2c1cebd4fad (diff) |
Make the specified krb5 path the _first_ place we look for krb5-config
Just in case there's a system krb5-config and we're being told to use some
other one..
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index af787af..dd0dc5a 100644 --- a/configure.ac +++ b/configure.ac @@ -150,7 +150,7 @@ if test "$krb5" != no; then AC_SEARCH_LIBS(socket, socket) AC_CHECK_LIB(gen, compile) if test "$krb5" != yes; then - PATH="$PATH:$krb5/bin" + PATH="$krb5/bin:$PATH" fi AC_CHECK_PROG(krb5config, krb5-config,yes) if test "$krb5config" = yes; then |