diff options
author | ru <ru@FreeBSD.org> | 2007-01-30 15:10:37 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2007-01-30 15:10:37 +0000 |
commit | 313b16a4881ef36358fd5bd8eeae3f696173c5d6 (patch) | |
tree | 983590b283303c4c16029babef14bb8f42bc70ef /usr.sbin | |
parent | 4c53b68afc434a7e4e11a1248d9de532432d9858 (diff) | |
download | FreeBSD-src-313b16a4881ef36358fd5bd8eeae3f696173c5d6.zip FreeBSD-src-313b16a4881ef36358fd5bd8eeae3f696173c5d6.tar.gz |
Add missing library dependencies and sort libraries
using lorder(1) so that static linkage is possible.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/gstat/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/gstat/Makefile b/usr.sbin/gstat/Makefile index 14c12fa..a02cf46 100644 --- a/usr.sbin/gstat/Makefile +++ b/usr.sbin/gstat/Makefile @@ -3,7 +3,7 @@ PROG= gstat MAN= gstat.8 WARNS?= 5 -DPADD= ${LIBGEOM} ${LIBDEVSTAT} ${LIBBSDXML} ${LIBCURSES} ${LIBEDIT} -LDADD= -lgeom -ldevstat -lbsdxml -lcurses -ledit +DPADD= ${LIBDEVSTAT} ${LIBKVM} ${LIBGEOM} ${LIBBSDXML} ${LIBSBUF} ${LIBEDIT} ${LIBCURSES} +LDADD= -ldevstat -lkvm -lgeom -lbsdxml -lsbuf -ledit -lcurses .include <bsd.prog.mk> |