Use $(LD) instead of $(CC) so that we can do purify checking
authorTheodore Tso <tytso@mit.edu>
Sat, 29 Apr 1995 04:31:18 +0000 (04:31 +0000)
committerTheodore Tso <tytso@mit.edu>
Sat, 29 Apr 1995 04:31:18 +0000 (04:31 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5653 dc483132-0cff-0310-8789-dd5450dbe970

src/appl/gss-sample/ChangeLog
src/appl/gss-sample/Makefile.in

index 285a38872e287c6d7bb62c9513106c230c638d81..606ace93ceab4fd3d454beda75f163253a412cb3 100644 (file)
@@ -1,5 +1,8 @@
 Fri Apr 28 15:30:00 1995  Theodore Y. Ts'o  <tytso@dcl>
 
+       * Makefile.in (gss-client): Use $(LD) instead of $(CC) so that we can
+               do purify checking.
+
        * gss-server.c (main, sign_server): Make changes to allow
                gss-server to be fired out of inetd.  New options: -inetd
                and -logfile.  The -logfile allows the output of
index e7fcf56cc946f4cf4a3315015e1c1dda75667c69..65f6c07fa31bb787eb38d3d41e79a156f41de15c 100644 (file)
@@ -15,10 +15,10 @@ DEPKLIB = $(TOPLIBD)/gssapi/libgssapi_krb5.a $(TOPLIBD)/libkrb5.a \
                $(TOPLIBD)/libcrypto.a $(COMERRLIB) $(DBMLIB)
 
 gss-server: gss-server.o gss-misc.o $(DEPKLIB)
-       $(CC) $(CFLAGS) -o gss-server gss-server.o gss-misc.o $(KLIB) $(LIBS)
+       $(LD) $(CFLAGS) -o gss-server gss-server.o gss-misc.o $(KLIB) $(LIBS)
 
 gss-client: gss-client.o gss-misc.o $(DEPKLIB)
-       $(CC) $(CFLAGS) -o gss-client gss-client.o gss-misc.o $(KLIB) $(LIBS)
+       $(LD) $(CFLAGS) -o gss-client gss-client.o gss-misc.o $(KLIB) $(LIBS)
 
 gss-client.o:  $(srcdir)/gss-client.c