summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/appl/gss-sample/ChangeLog3
-rw-r--r--src/appl/gss-sample/Makefile.in4
2 files changed, 5 insertions, 2 deletions
diff --git a/src/appl/gss-sample/ChangeLog b/src/appl/gss-sample/ChangeLog
index 285a38872e..606ace93ce 100644
--- a/src/appl/gss-sample/ChangeLog
+++ b/src/appl/gss-sample/ChangeLog
@@ -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
diff --git a/src/appl/gss-sample/Makefile.in b/src/appl/gss-sample/Makefile.in
index e7fcf56cc9..65f6c07fa3 100644
--- a/src/appl/gss-sample/Makefile.in
+++ b/src/appl/gss-sample/Makefile.in
@@ -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