diff options
author | gmorris <gmorris> | 2005-02-27 02:25:17 +0000 |
---|---|---|
committer | gmorris <gmorris> | 2005-02-27 02:25:17 +0000 |
commit | 40136aaabfddc107fa5532a1314e2055a08fc836 (patch) | |
tree | 547fd262726f042fb7c23d9ee7bafdde118125c0 | |
parent | d2f45f8a428f4f03f62f7d745713da62a92d09b9 (diff) | |
download | nfs-utils-40136aaabfddc107fa5532a1314e2055a08fc836.tar.gz nfs-utils-40136aaabfddc107fa5532a1314e2055a08fc836.tar.xz nfs-utils-40136aaabfddc107fa5532a1314e2055a08fc836.zip |
Fix typo, Closes bug [1050003]
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.in | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -2134,7 +2134,7 @@ fi break fi - CFLAGS=$CFLAGS `K5CONFIG --cflags` + CFLAGS=$CFLAGS `$K5CONFIG --cflags` fi done if test "x$KRBDIR" = "x"; then diff --git a/configure.in b/configure.in index efc21bf..aaffb2d 100644 --- a/configure.in +++ b/configure.in @@ -202,7 +202,7 @@ if test "$enable_gss" = yes; then AC_DEFINE(HAVE_GSS_KRB5_CCACHE_NAME),,$KRBLIB) break fi - CFLAGS=$CFLAGS `K5CONFIG --cflags` + CFLAGS=$CFLAGS `$K5CONFIG --cflags` fi done dnl We didn't find a usable Kerberos environment |