Use $(LD) instead of $(CC) when trying to link. (So purify works).
authorTheodore Tso <tytso@mit.edu>
Fri, 28 Apr 1995 19:51:42 +0000 (19:51 +0000)
committerTheodore Tso <tytso@mit.edu>
Fri, 28 Apr 1995 19:51:42 +0000 (19:51 +0000)
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

src/clients/kinit/ChangeLog
src/clients/kinit/Makefile.in

index b5ff05c3b85ef28f4846b78d99e83546d3d90fb1..326b2580b51e35907a33ebe44c4585bc25c7c540 100644 (file)
@@ -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
index 512d78214be0e145f045ee9d1c14cc1793ae38d8..6f6bdbdf8decc27d020a377bb3e8d2cd49dbed04 100644 (file)
@@ -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