diff options
author | bde <bde@FreeBSD.org> | 1999-03-29 03:17:43 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1999-03-29 03:17:43 +0000 |
commit | ec5e8c885fb4912cbd14ca0a8f64e23f3e82d75e (patch) | |
tree | 2fbc7eace3a7096876ff30c83b02d742b342173c /usr.sbin/portmap | |
parent | 028d3f6895ab7a9bca8ccc5ed838ac5ff2d33eee (diff) | |
download | FreeBSD-src-ec5e8c885fb4912cbd14ca0a8f64e23f3e82d75e.zip FreeBSD-src-ec5e8c885fb4912cbd14ca0a8f64e23f3e82d75e.tar.gz |
Fixed world breakage in previous commit. -lwrap was in LDFLAGS where
it has no effect.
Fixed the usual style bugs for DPADD and LDADD.
Diffstat (limited to 'usr.sbin/portmap')
-rw-r--r-- | usr.sbin/portmap/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/portmap/Makefile b/usr.sbin/portmap/Makefile index cca9f5d..e6c32a3 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 <bsd.prog.mk> |