From: Ezra Peisach Date: Fri, 30 Jun 2000 19:56:54 +0000 (+0000) Subject: * Makefile.in: kprop does not depend on the database libraries. X-Git-Tag: krb5-1.3-alpha1~2053 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=786af524de053787935421b5f2481cefafeaea11;p=krb5.git * Makefile.in: kprop does not depend on the database libraries. kpropd does not depend, nor need to link in the database libraries. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@12484 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/slave/ChangeLog b/src/slave/ChangeLog index c60c05efa..dcb88dbd2 100644 --- a/src/slave/ChangeLog +++ b/src/slave/ChangeLog @@ -1,3 +1,8 @@ +2000-06-30 Ezra Peisach + + * Makefile.in: kprop does not depend on the database libraries. + kpropd does not depend, nor need to link in the database libraries. + 2000-05-08 Nalin Dahyabhai * kprop.c (open_connection): New argument indicates output buffer diff --git a/src/slave/Makefile.in b/src/slave/Makefile.in index 3caec4a48..f9de2570e 100644 --- a/src/slave/Makefile.in +++ b/src/slave/Makefile.in @@ -16,11 +16,11 @@ SERVEROBJS= kpropd.o SRCS= $(CLIENTSRCS) $(SERVERSRCS) -kprop: $(CLIENTOBJS) $(KDB5_DEPLIB) $(KRB5_BASE_DEPLIBS) +kprop: $(CLIENTOBJS) $(KRB5_BASE_DEPLIBS) $(CC_LINK) -o kprop $(CLIENTOBJS) $(KRB5_BASE_LIBS) -kpropd: $(SERVEROBJS) $(KDB5_DEPLIBS) $(KRB5_BASE_DEPLIBS) - $(CC_LINK) -o kpropd $(SERVEROBJS) $(KDB5_LIBS) $(KRB5_BASE_LIBS) +kpropd: $(SERVEROBJS) $(KRB5_BASE_DEPLIBS) + $(CC_LINK) -o kpropd $(SERVEROBJS) $(KRB5_BASE_LIBS) install:: for f in kprop kpropd; do \