svn commit: r244562 - in head: contrib/mknod contrib/mtree usr.sbin usr.sbin/nmtree

Andrew Turner andrew at fubar.geek.nz
Sat Dec 22 02:57:26 UTC 2012


On Fri, 21 Dec 2012 21:00:01 +0000 (UTC)
Brooks Davis <brooks at FreeBSD.org> wrote:
> Added: head/usr.sbin/nmtree/Makefile
> ==============================================================================
> --- /dev/null	00:00:00 1970	(empty, because file is
> newly added) +++ head/usr.sbin/nmtree/Makefile	Fri Dec 21
> 21:00:00 2012	(r244562) @@ -0,0 +1,26 @@
> +#	$FreeBSD$
> +
> +.include <bsd.own.mk>
> +
> +.PATH: ${.CURDIR}/../../contrib/mtree
> +
> +PROG=		nmtree
> +MAN=		nmtree.8
> +SRCS=		compare.c crc.c create.c excludes.c getid.c
> misc.c mtree.c \
> +		spec.c specspec.c verify.c
> +LDADD+=		-lmd -lutil
> +
> +CFLAGS+=	-I${.CURDIR}/../../contrib/mknod
> +.PATH:		${.CURDIR}/../../contrib/mknod
> +SRCS+=		pack_dev.c
> +
> +CFLAGS+=	-I${.CURDIR}/../../lib/libnetbsd
> +LIBNETBSDDIR=	${.OBJDIR}/../../lib/libnetbsd
> +LIBNETBSD=	${LIBNETBSDDIR}/libnetbsd.a
> +DPADD+=		{LIBNETBSD}

This line is missing the $, it should be:
DPADD+=		${LIBNETBSD}

Andrew


More information about the svn-src-all mailing list