mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Fixed a missing library in DPADD.
Fixed some misformattings.
This commit is contained in:
parent
76fbc068b8
commit
07b065a591
1 changed files with 4 additions and 3 deletions
|
|
@ -1,13 +1,14 @@
|
|||
# $FreeBSD$
|
||||
|
||||
MAINTAINER = grog@FreeBSD.org
|
||||
MAINTAINER= grog@FreeBSD.org
|
||||
|
||||
PROG= vinum
|
||||
SRCS= v.c list.c vinumparser.c vinumutil.c vext.h commands.c
|
||||
MAN8= vinum.8
|
||||
|
||||
CFLAGS+= -I${.CURDIR}/../../sys -Wall -DVINUMDEBUG
|
||||
DPADD= ${LIBUTIL} ${LIBREADLINE} ${LIBTERMCAP}
|
||||
LDADD= -lutil -lreadline -ltermcap -ldevstat
|
||||
DPADD= ${LIBUTIL} ${LIBREADLINE} ${LIBTERMCAP} ${LIBDEVSTAT}
|
||||
LDADD= -lutil -lreadline -ltermcap -ldevstat
|
||||
|
||||
.PATH: ${.CURDIR}/../../sys/dev/vinum
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue