summaryrefslogtreecommitdiffstats
path: root/src/lib/rpc
diff options
context:
space:
mode:
authorEzra Peisach <epeisach@mit.edu>1996-10-31 18:15:53 +0000
committerEzra Peisach <epeisach@mit.edu>1996-10-31 18:15:53 +0000
commit787deed3aece30814cc4d8666e714e4607fa360a (patch)
treeb972937c936327c54ba16a33eb269c81adac26a8 /src/lib/rpc
parentf3088b0a6dde01c1884e3767583cab1178fee457 (diff)
downloadkrb5-787deed3aece30814cc4d8666e714e4607fa360a.tar.gz
krb5-787deed3aece30814cc4d8666e714e4607fa360a.tar.xz
krb5-787deed3aece30814cc4d8666e714e4607fa360a.zip
Use $(LD) instead of $(CC) at link stage - this allows one to use
purify correctly. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@9266 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/rpc')
-rw-r--r--src/lib/rpc/unit-test/ChangeLog5
-rw-r--r--src/lib/rpc/unit-test/Makefile.in4
2 files changed, 7 insertions, 2 deletions
diff --git a/src/lib/rpc/unit-test/ChangeLog b/src/lib/rpc/unit-test/ChangeLog
index a5d21e8a5c..e8f60889bf 100644
--- a/src/lib/rpc/unit-test/ChangeLog
+++ b/src/lib/rpc/unit-test/ChangeLog
@@ -1,3 +1,8 @@
+Thu Oct 31 13:14:45 1996 Ezra Peisach <epeisach@kangaroo.mit.edu>
+
+ * Makefile.in (client,server): Use $(LD) instead of $(CC) in link
+ stage.
+
Thu Oct 31 08:47:47 1996 Ezra Peisach <epeisach@mit.edu>
* Makefile.in: Only run tests if required programs, libraries
diff --git a/src/lib/rpc/unit-test/Makefile.in b/src/lib/rpc/unit-test/Makefile.in
index a9ec059c00..5253b38e53 100644
--- a/src/lib/rpc/unit-test/Makefile.in
+++ b/src/lib/rpc/unit-test/Makefile.in
@@ -3,10 +3,10 @@ CFLAGS = $(CCOPTS) $(DEFS) $(LOCALINCLUDE) -I.
all:: client server
client: client.o rpc_test_clnt.o $(DEPLIBS)
- $(CC) $(LDFLAGS) $(LDARGS) -o client client.o rpc_test_clnt.o $(LIBS)
+ $(LD) $(LDFLAGS) $(LDARGS) -o client client.o rpc_test_clnt.o $(LIBS)
server: server.o rpc_test_svc.o $(DEPLIBS)
- $(CC) $(LDFLAGS) $(LDARGS) -o server server.o rpc_test_svc.o $(LIBS)
+ $(LD) $(LDFLAGS) $(LDARGS) -o server server.o rpc_test_svc.o $(LIBS)
client.c server.c: rpc_test.h