svn commit: r210459 - head/sys/boot/pc98/loader

Takahashi Yoshihiro nyan at FreeBSD.org
Sun Jul 25 02:22:33 UTC 2010


Author: nyan
Date: Sun Jul 25 02:22:32 2010
New Revision: 210459
URL: http://svn.freebsd.org/changeset/base/210459

Log:
  MFi386: revision 210387
  
    Correctly setup LDADD with regards to libstand.

Modified:
  head/sys/boot/pc98/loader/Makefile

Modified: head/sys/boot/pc98/loader/Makefile
==============================================================================
--- head/sys/boot/pc98/loader/Makefile	Sat Jul 24 23:41:09 2010	(r210458)
+++ head/sys/boot/pc98/loader/Makefile	Sun Jul 25 02:22:32 2010	(r210459)
@@ -94,6 +94,6 @@ FILES+=	${.CURDIR}/../../i386/loader/loa
 OBJS=	${BTXCRT} 
 
 DPADD=	${LIBFICL} ${LIBPC98} ${LIBSTAND}
-LDADD=	${LIBFICL} ${LIBPC98} -lstand
+LDADD=	${LIBFICL} ${LIBPC98} ${LIBSTAND}
 
 .include <bsd.prog.mk>


More information about the svn-src-all mailing list