mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
- Fix libmd dependency. It is needed in the bootstrap library list because
usr.bin/xinstall depends on it. - Remove libutil from usr.bin/xinstall/Makefile. No symbol was actually used. Reviewed by: brooks
This commit is contained in:
parent
af2637db52
commit
0af99eef9e
2 changed files with 5 additions and 2 deletions
|
|
@ -1207,6 +1207,7 @@ bootstrap-tools:
|
|||
${_sed} \
|
||||
${_yacc} \
|
||||
${_lex} \
|
||||
lib/libmd \
|
||||
usr.bin/xinstall \
|
||||
${_gensnmptree} \
|
||||
usr.sbin/config \
|
||||
|
|
|
|||
|
|
@ -7,10 +7,12 @@ SRCS= xinstall.c getid.c
|
|||
MAN= install.1
|
||||
|
||||
.PATH: ${.CURDIR}/../../contrib/mtree
|
||||
.PATH: ${.CURDIR}/../../lib/libmd
|
||||
CFLAGS+= -I${.CURDIR}/../../contrib/mtree
|
||||
CFLAGS+= -I${.CURDIR}/../../lib/libnetbsd
|
||||
CFLAGS+= -I${.CURDIR}/../../lib/libmd
|
||||
|
||||
DPADD+= ${LIBUTIL} ${LIBMD}
|
||||
LDADD+= -lutil -lmd
|
||||
DPADD+= ${LIBMD}
|
||||
LDADD+= -lmd
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
|
|
|
|||
Loading…
Reference in a new issue