From 787deed3aece30814cc4d8666e714e4607fa360a Mon Sep 17 00:00:00 2001 From: Ezra Peisach Date: Thu, 31 Oct 1996 18:15:53 +0000 Subject: [PATCH] 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 --- src/lib/rpc/unit-test/ChangeLog | 5 +++++ src/lib/rpc/unit-test/Makefile.in | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/src/lib/rpc/unit-test/ChangeLog b/src/lib/rpc/unit-test/ChangeLog index a5d21e8a5..e8f60889b 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 + + * Makefile.in (client,server): Use $(LD) instead of $(CC) in link + stage. + Thu Oct 31 08:47:47 1996 Ezra Peisach * 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 a9ec059c0..5253b38e5 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 -- 2.26.2