svn commit: r272243 - head/sbin/fdisk_pc98

Takahashi Yoshihiro nyan at FreeBSD.org
Sun Sep 28 08:23:27 UTC 2014


Author: nyan
Date: Sun Sep 28 08:23:26 2014
New Revision: 272243
URL: http://svnweb.freebsd.org/changeset/base/272243

Log:
  Merged from r183296.
  
    Add missing library dependencies.

Modified:
  head/sbin/fdisk_pc98/Makefile

Modified: head/sbin/fdisk_pc98/Makefile
==============================================================================
--- head/sbin/fdisk_pc98/Makefile	Sun Sep 28 07:43:38 2014	(r272242)
+++ head/sbin/fdisk_pc98/Makefile	Sun Sep 28 08:23:26 2014	(r272243)
@@ -7,7 +7,7 @@ MAN=	fdisk.8
 
 .PATH:	${.CURDIR}/../../sys/geom
 
-DPADD	+=	${LIBGEOM}
-LDADD	+=	-lgeom
+DPADD+=	${LIBGEOM} ${LIBBSDXML} ${LIBSBUF}
+LDADD+=	-lgeom -lbsdxml -lsbuf
 
 .include <bsd.prog.mk>


More information about the svn-src-all mailing list