- 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:
Hiroki Sato 2013-02-14 08:32:07 +00:00
parent af2637db52
commit 0af99eef9e
2 changed files with 5 additions and 2 deletions

View File

@ -1207,6 +1207,7 @@ bootstrap-tools:
${_sed} \
${_yacc} \
${_lex} \
lib/libmd \
usr.bin/xinstall \
${_gensnmptree} \
usr.sbin/config \

View File

@ -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>