summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Park <pjpark@mit.edu>1995-06-06 21:32:52 +0000
committerPaul Park <pjpark@mit.edu>1995-06-06 21:32:52 +0000
commit7aefc3c79f08d889c94b0cd6c8cbbd87b9074ccd (patch)
tree75611fbe8200ef971894df1bdf2209d4506252bf /src
parent4a4d973e8312c5fbcae19fcb0bece1ddda53dd7a (diff)
downloadkrb5-7aefc3c79f08d889c94b0cd6c8cbbd87b9074ccd.tar.gz
krb5-7aefc3c79f08d889c94b0cd6c8cbbd87b9074ccd.tar.xz
krb5-7aefc3c79f08d889c94b0cd6c8cbbd87b9074ccd.zip
Use ARADD instead of ARCHIVE
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5957 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r--src/krb524/ChangeLog8
-rw-r--r--src/krb524/Makefile.in2
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)