Add missing library dependencies.

PR:		bin/127573
Submitted by:	Eygene Ryabinkin
This commit is contained in:
Ruslan Ermilov 2008-09-23 13:12:51 +00:00
parent 79775f8f1b
commit 0a4b670e07
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=183296
2 changed files with 4 additions and 4 deletions

View File

@ -13,8 +13,8 @@ LINKS= ${BINDIR}/bsdlabel ${BINDIR}/disklabel
MLINKS= bsdlabel.8 disklabel.8
.endif
DPADD= ${LIBGEOM}
LDADD= -lgeom
DPADD= ${LIBGEOM} ${LIBBSDXML} ${LIBSBUF}
LDADD= -lgeom -lbsdxml -lsbuf
.include <bsd.prog.mk>

View File

@ -7,8 +7,8 @@ MAN= fdisk.8
.PATH: ${.CURDIR}/../../sys/geom
DPADD += ${LIBGEOM}
LDADD += -lgeom
DPADD+= ${LIBGEOM} ${LIBBSDXML} ${LIBSBUF}
LDADD+= -lgeom -lbsdxml -lsbuf
.include <bsd.prog.mk>