diff options
author | ru <ru@FreeBSD.org> | 2004-02-04 10:20:43 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2004-02-04 10:20:43 +0000 |
commit | 7e3a5665be61804d36b558778edb731a357ba143 (patch) | |
tree | 71b3b8ad13347263d560a62937cb53ad26fd06d6 /usr.bin/systat | |
parent | a93b97447f7551fd4e6cc9f460af58e854b78258 (diff) | |
download | FreeBSD-src-7e3a5665be61804d36b558778edb731a357ba143.zip FreeBSD-src-7e3a5665be61804d36b558778edb731a357ba143.tar.gz |
Put libdevstat before libkvm, because the former depends on the latter.
Diffstat (limited to 'usr.bin/systat')
-rw-r--r-- | usr.bin/systat/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/systat/Makefile b/usr.bin/systat/Makefile index c74c08d..3cd09f4 100644 --- a/usr.bin/systat/Makefile +++ b/usr.bin/systat/Makefile @@ -7,7 +7,7 @@ SRCS= cmds.c cmdtab.c devs.c fetch.c iostat.c keyboard.c main.c \ mode.c ip.c ip6.c tcp.c \ vmstat.c convtbl.c ifcmds.c ifstat.c CFLAGS+=-DINET6 -DPADD= ${LIBCURSES} ${LIBM} ${LIBKVM} ${LIBDEVSTAT} -LDADD= -lcurses -lm -lkvm -ldevstat +DPADD= ${LIBCURSES} ${LIBM} ${LIBDEVSTAT} ${LIBKVM} +LDADD= -lcurses -lm -ldevstat -lkvm .include <bsd.prog.mk> |