summaryrefslogtreecommitdiffstats
path: root/src/appl/gss-sample
diff options
context:
space:
mode:
authorTheodore Tso <tytso@mit.edu>1995-04-29 04:31:18 +0000
committerTheodore Tso <tytso@mit.edu>1995-04-29 04:31:18 +0000
commit71a09f3f57e47603c8eb237e1eb8d67b6d524c0d (patch)
treeca3bb73b0014de86167e6116ff029d8dfbaa60e3 /src/appl/gss-sample
parentb45dead41a10f87d5a9ad20df211ccbc1c4b6f11 (diff)
downloadkrb5-71a09f3f57e47603c8eb237e1eb8d67b6d524c0d.tar.gz
krb5-71a09f3f57e47603c8eb237e1eb8d67b6d524c0d.tar.xz
krb5-71a09f3f57e47603c8eb237e1eb8d67b6d524c0d.zip
Use $(LD) instead of $(CC) so that we can do purify checking
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5653 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/appl/gss-sample')
-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