From: Paul Park Date: Fri, 28 Apr 1995 19:29:47 +0000 (+0000) Subject: Fix aclocal.m4 with --with-krb4 has a value. KDB4_LIB is now $withval/ X-Git-Tag: krb5-1.0-beta5~127 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=49555f1dd0ac3693eda3bfae0cca0f13af5239c6;p=krb5.git Fix aclocal.m4 with --with-krb4 has a value. KDB4_LIB is now $withval/ lib/libkdb4.a. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5625 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/ChangeLog b/src/ChangeLog index 417b21b22..607c204d3 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ + +Fri Apr 28 15:27:45 EDT 1995 Paul Park (pjpark@mit.edu) + * aclocal.m4 (WITH_KRB4): fix KDB4_LIB location when --with-krb4 + has a value. + Fri Apr 28 11:38:09 1995 Keith Vetter (keithv@fusion.com) * Makefile.in: new windows gss app added to the zip target. diff --git a/src/aclocal.m4 b/src/aclocal.m4 index 184459634..85fb3696c 100644 --- a/src/aclocal.m4 +++ b/src/aclocal.m4 @@ -342,7 +342,7 @@ else else AC_MSG_RESULT(preinstalled krb4 in $withval) KRB4_LIB="$withval/lib/libkrb.a"' $(TOPLIBD)/libdes425.a' - KDB4_LIB="$withval/libkdb.a" + KDB4_LIB="$withval/lib/libkdb.a" fi fi AC_SUBST(KRB4_LIB)