summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTheodore Tso <tytso@mit.edu>1995-04-28 19:51:42 +0000
committerTheodore Tso <tytso@mit.edu>1995-04-28 19:51:42 +0000
commit1cc8ec19e5214a20cc6d21ce70bee4082c6bb6a7 (patch)
treee57a06424eb408e4b5e3aa1f35e679e3436e3806
parent8ce0c588b5121ac9dc1e4d06f22a109e8118fc12 (diff)
downloadkrb5-1cc8ec19e5214a20cc6d21ce70bee4082c6bb6a7.tar.gz
krb5-1cc8ec19e5214a20cc6d21ce70bee4082c6bb6a7.tar.xz
krb5-1cc8ec19e5214a20cc6d21ce70bee4082c6bb6a7.zip
Use $(LD) instead of $(CC) when trying to link. (So purify works).
Note: to get things to work on the Mac, just put LD=$(CC) in the Makefile. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5629 dc483132-0cff-0310-8789-dd5450dbe970
-rw-r--r--src/clients/kinit/ChangeLog6
-rw-r--r--src/clients/kinit/Makefile.in2
2 files changed, 7 insertions, 1 deletions
diff --git a/src/clients/kinit/ChangeLog b/src/clients/kinit/ChangeLog
index b5ff05c3b..326b2580b 100644
--- a/src/clients/kinit/ChangeLog
+++ b/src/clients/kinit/ChangeLog
@@ -1,3 +1,9 @@
+Fri Apr 28 15:49:39 1995 Theodore Y. Ts'o <tytso@dcl>
+
+ * Makefile.in (kinit): Use $(LD) instead of $(CC) when trying to
+ link. (So purify works). Note: to get things to work on
+ the mac, just put LD=$(CC) in the Makefile.
+
Fri Apr 21 15:24:57 1995 Chris Provenzano (proven@mit.edu)
* configure.in : Make configure look for pwd.h and define
diff --git a/src/clients/kinit/Makefile.in b/src/clients/kinit/Makefile.in
index 512d78214..6f6bdbdf8 100644
--- a/src/clients/kinit/Makefile.in
+++ b/src/clients/kinit/Makefile.in
@@ -8,7 +8,7 @@ KLIB = $(TOPLIBD)/libkrb5.a $(TOPLIBD)/libcrypto.a $(COMERRLIB)
DEPKLIB = $(TOPLIBD)/libkrb5.a $(TOPLIBD)/libcrypto.a $(COMERRLIB)
kinit: kinit.o $(DEPKLIB)
- $(CC) $(CFLAGS) $(LDFLAGS) -o kinit kinit.o $(KLIB) $(LIBS)
+ $(LD) $(CFLAGS) $(LDFLAGS) -o kinit kinit.o $(KLIB) $(LIBS)
kinit.o: $(srcdir)/kinit.c