From effeb393502c2dd734899fc8c5a801e8d36be30e Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Mon, 18 Nov 1996 00:55:05 +0000 Subject: [PATCH] must link otptest with $LIBS in case the dbm-stuff is hiding there. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@1041 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/otp/Makefile.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/otp/Makefile.in b/lib/otp/Makefile.in index baeb2fcad..8ccb41d3e 100644 --- a/lib/otp/Makefile.in +++ b/lib/otp/Makefile.in @@ -12,6 +12,7 @@ AR = ar RANLIB = @RANLIB@ DEFS = @DEFS@ CFLAGS = @CFLAGS@ +LIBS = @LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ @@ -76,7 +77,7 @@ realclean: distclean rm -f TAGS otptest: $(OTPTEST_OBJECTS) - $(CC) $(LD_FLAGS) $(LDFLAGS) -o $@ $(OTPTEST_OBJECTS) -L. -lotp -L../des -ldes + $(CC) $(LD_FLAGS) $(LDFLAGS) -o $@ $(OTPTEST_OBJECTS) -L. -lotp -L../des -ldes $(LIBS) $(LIBNAME).a: $(LIB_OBJECTS) rm -f $@