Module Name: src
Committed By: joerg
Date: Sat Jun 6 15:45:47 UTC 2015
Modified Files:
src/usr.sbin/installboot: Makefile
Log Message:
Linking against libutil is not appropiate for tools.
To generate a diff of this commit:
cvs rdiff -u -r1.49 -r1.50 src/usr.sbin/installboot/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.sbin/installboot/Makefile
diff -u src/usr.sbin/installboot/Makefile:1.49 src/usr.sbin/installboot/Makefile:1.50
--- src/usr.sbin/installboot/Makefile:1.49 Fri Jun 5 05:03:21 2015
+++ src/usr.sbin/installboot/Makefile Sat Jun 6 15:45:47 2015
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.49 2015/06/05 05:03:21 mlelstv Exp $
+# $NetBSD: Makefile,v 1.50 2015/06/06 15:45:47 joerg Exp $
#
.include <bsd.own.mk>
@@ -46,9 +46,9 @@ CPPFLAGS+= -I${.CURDIR} -I.
.for f in i386 macppc
COPTS.${f}.c+= -Wno-pointer-sign
.endfor
-.endif
LDADD+= -lutil
DPADD+= ${LIBUTIL}
+.endif
.include <bsd.prog.mk>