diff options
author | ru <ru@FreeBSD.org> | 2010-02-25 20:24:19 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2010-02-25 20:24:19 +0000 |
commit | 4d27ff91d01ec406d08089baae33529e85e9868f (patch) | |
tree | 4f5956e5e1eefb11957b3c4e601da267e4d60995 /sbin | |
parent | ab65ee82de3cee0452b0d696f87e19f28add5f08 (diff) | |
download | FreeBSD-src-4d27ff91d01ec406d08089baae33529e85e9868f.zip FreeBSD-src-4d27ff91d01ec406d08089baae33529e85e9868f.tar.gz |
Fixed dependencies (make checkdpadd).
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/geom/class/part/Makefile | 1 | ||||
-rw-r--r-- | sbin/ifconfig/Makefile | 2 | ||||
-rw-r--r-- | sbin/ipfw/Makefile | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/sbin/geom/class/part/Makefile b/sbin/geom/class/part/Makefile index 8e7d0ff..7fe221a 100644 --- a/sbin/geom/class/part/Makefile +++ b/sbin/geom/class/part/Makefile @@ -4,6 +4,7 @@ CLASS= part +DPADD= ${LIBUTIL} LDADD= -lutil .include <bsd.lib.mk> diff --git a/sbin/ifconfig/Makefile b/sbin/ifconfig/Makefile index 8fd21ae..77491f2 100644 --- a/sbin/ifconfig/Makefile +++ b/sbin/ifconfig/Makefile @@ -28,7 +28,7 @@ SRCS+= ifgre.c # GRE keys etc SRCS+= ifgif.c # GIF reversed header workaround SRCS+= ifieee80211.c regdomain.c # SIOC[GS]IEEE80211 support -DPADD+= ${LIBBSDXML} ${LIBSBUF} ${LIBJAIL} +DPADD+= ${LIBBSDXML} ${LIBJAIL} ${LIBSBUF} LDADD+= -lbsdxml -ljail -lsbuf SRCS+= ifcarp.c # SIOC[GS]VH support diff --git a/sbin/ipfw/Makefile b/sbin/ipfw/Makefile index c09ebca..b25f38c 100644 --- a/sbin/ipfw/Makefile +++ b/sbin/ipfw/Makefile @@ -3,6 +3,7 @@ PROG= ipfw SRCS= ipfw2.c dummynet.c ipv6.c main.c nat.c altq.c WARNS?= 2 +DPADD= ${LIBUTIL} LDADD= -lutil MAN= ipfw.8 |