From c22ca0ba7a2a2a87294a00d55581e9471ad4aee2 Mon Sep 17 00:00:00 2001 From: Steven Dake Date: Sat, 18 Sep 2004 07:03:51 +0000 Subject: [PATCH] Remove two build errors with extra object file included that is not needed. (Logical change 1.74) git-svn-id: http://svn.fedorahosted.org/svn/corosync/trunk@260 fd59a12c-fef9-0310-b244-a6a79926bd2f --- test/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Makefile b/test/Makefile index e9a6e292..878802c3 100644 --- a/test/Makefile +++ b/test/Makefile @@ -92,10 +92,10 @@ testevt: testevt.o sa_error.o $(LIBRARIES) $(CC) $(LDFLAGS) -o testevt testevt.o sa_error.o $(LIBS) testevs: testevs.o $(LIBS) - $(CC) $(LDFLAGS) -o testevs testevs.o sa_error.o $(LIBS) + $(CC) $(LDFLAGS) -o testevs testevs.o $(LIBS) evsbench: evsbench.o $(LIBS) - $(CC) $(LDFLAGS) -o evsbench evsbench.o sa_error.o $(LIBS) + $(CC) $(LDFLAGS) -o evsbench evsbench.o $(LIBS) testclm: testclm.o $(LIBRARIES) $(CC) $(LDFLAGS) -o testclm testclm.o $(LIBS)