From d0fdeb12a2e5f38a2710a79224e6a81876f62912 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Tue, 3 Nov 2009 14:58:47 +0000 Subject: [PATCH] Remove a spurious comma in the kerb5 bits. --- configure | 2 +- configure.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 16f7221d7..51325744e 100755 --- a/configure +++ b/configure @@ -23217,7 +23217,7 @@ fi { echo "$as_me:$LINENO: result: $ac_cv_lib_krb5support_main" >&5 echo "${ECHO_T}$ac_cv_lib_krb5support_main" >&6; } if test $ac_cv_lib_krb5support_main = yes; then - SUDO_LIBS="${SUDO_LIBS} -lkrb5support," + SUDO_LIBS="${SUDO_LIBS} -lkrb5support" fi diff --git a/configure.in b/configure.in index d085e37c8..ec04f4a15 100644 --- a/configure.in +++ b/configure.in @@ -2286,7 +2286,7 @@ if test ${with_kerb5-'no'} != "no" -a -z "$KRB5CONFIG"; then ], [ AC_MSG_RESULT(no) SUDO_LIBS="${SUDO_LIBS} -lkrb5 -lk5crypto -lcom_err" - AC_CHECK_LIB(krb5support, main, [SUDO_LIBS="${SUDO_LIBS} -lkrb5support,"]) + AC_CHECK_LIB(krb5support, main, [SUDO_LIBS="${SUDO_LIBS} -lkrb5support"]) ]) AUTH_OBJS="$AUTH_OBJS kerb5.o" _LIBS="$LIBS" -- 2.40.0