From a379b5c288fa48ffc3c62ca1d8e1f12eebba19fc Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Wed, 16 Apr 2003 13:50:52 +0000 Subject: [PATCH] "Fixed" LDADD by backing out part of the previous commit. -lfoo in LDADD is not wrong, but the simple substitution in `make checkdpadd' doesn't work if foo.a is not an installed library, so we use the full path to foo.a in both DPADD and LDADD for non-installed libraries. --- usr.sbin/named/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/named/Makefile b/usr.sbin/named/Makefile index 5bd825cdfe1..4913c16f3fe 100644 --- a/usr.sbin/named/Makefile +++ b/usr.sbin/named/Makefile @@ -24,7 +24,7 @@ LIBISCDIR!= cd ${.CURDIR}/../../lib/libisc; make -V .OBJDIR LIBISC:= ${LIBISCDIR}/libisc.a DPADD+= ${LIBISC} -LDADD+= -lisc +LDADD+= ${LIBISC} HTMLS= acl.html address_list.html comments.html config.html controls.html \ docdef.html example.html include.html index.html key.html \