From 0a5f727d6aea682ec1581383cef1b86230692b6c Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Mon, 29 Mar 1999 03:17:43 +0000 Subject: [PATCH] Fixed world breakage in previous commit. -lwrap was in LDFLAGS where it has no effect. Fixed the usual style bugs for DPADD and LDADD. --- usr.sbin/portmap/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/usr.sbin/portmap/Makefile b/usr.sbin/portmap/Makefile index cca9f5dd942..e6c32a36476 100644 --- a/usr.sbin/portmap/Makefile +++ b/usr.sbin/portmap/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 -# $Id$ +# $Id: Makefile,v 1.5 1999/03/28 10:55:03 markm Exp $ PROG= portmap MAN8= portmap.8 @@ -7,7 +7,7 @@ SRCS= portmap.c from_local.c pmap_check.c SUBDIR= pmap_set pmap_dump CFLAGS+=-DCHECK_PORT -DHOSTS_ACCESS -DPADD+= ${LIBWRAP} -LDFLAGS+=-lwrap +DPADD= ${LIBWRAP} +LDADD= -lwrap .include