diff options
| -rw-r--r-- | src/krb524/ChangeLog | 8 | ||||
| -rw-r--r-- | src/krb524/Makefile.in | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/src/krb524/ChangeLog b/src/krb524/ChangeLog index b5ffd7dfc..2d923e224 100644 --- a/src/krb524/ChangeLog +++ b/src/krb524/ChangeLog @@ -1,3 +1,11 @@ + +Tue Jun 6 17:25:20 EDT 1995 Paul Park (pjpark@mit.edu) + * Makefile.in : Change $(ARCHIVE) to $(ARADD) so that updates to the + library replace modules instead of appending them. + * cnv_tkt_skey.c, conv_creds.c : Concatenate the two strings which + comprise the print format. Some compilers cannot deal with + <string><string> (e.g. Ultrix). + Mon Jun 5 22:25:33 1995 Theodore Y. Ts'o <tytso@dcl> * Makefile.in, cnv_tkt_skey.c, conv_creds.c, conv_princ.c, diff --git a/src/krb524/Makefile.in b/src/krb524/Makefile.in index f2a77f37f..208a8c704 100644 --- a/src/krb524/Makefile.in +++ b/src/krb524/Makefile.in @@ -52,7 +52,7 @@ GENS = krb524_err.c krb524_err.h all:: $(GENS) libkrb524.a krb524d test k524init libkrb524.a: $(OBJS) - $(ARCHIVE) $@ $(OBJS) + $(ARADD) $@ $(OBJS) $(RANLIB) $@ test: libkrb524.a test.o $(DEPKDBLIB) $(DEPKLIB) |
