Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 25 Sep 2012 21:33:37 +0000 (UTC)
From:      Brooks Davis <brooks@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r240937 - in projects/mtree/usr.bin: . install
Message-ID:  <201209252133.q8PLXbY8099315@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: brooks
Date: Tue Sep 25 21:33:36 2012
New Revision: 240937
URL: http://svn.freebsd.org/changeset/base/240937

Log:
  Hook NetBSD's install up to the build.  For now it is installed as ninstall
  and without a manpage.

Added:
  projects/mtree/usr.bin/install/
  projects/mtree/usr.bin/install/Makefile
Modified:
  projects/mtree/usr.bin/Makefile

Modified: projects/mtree/usr.bin/Makefile
==============================================================================
--- projects/mtree/usr.bin/Makefile	Tue Sep 25 21:31:17 2012	(r240936)
+++ projects/mtree/usr.bin/Makefile	Tue Sep 25 21:33:36 2012	(r240937)
@@ -64,6 +64,7 @@ SUBDIR=	alias \
 	hexdump \
 	${_iconv} \
 	id \
+	install \
 	ipcrm \
 	ipcs \
 	join \

Added: projects/mtree/usr.bin/install/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ projects/mtree/usr.bin/install/Makefile	Tue Sep 25 21:33:36 2012	(r240937)
@@ -0,0 +1,17 @@
+# $FreeBSD$
+
+.include <bsd.own.mk>
+
+PROG=   ninstall
+SRCS=   xinstall.c getid.c util.c
+MAN=
+
+.PATH: ${.CURDIR}/../../contrib/install
+.PATH: ${.CURDIR}/../../contrib/mtree
+.PATH: ${.CURDIR}/../../usr.sbin/nmtree
+CFLAGS+=	-I${.CURDIR}/../../contrib/mtree \
+		-I${.CURDIR}/../../usr.sbin/nmtree \
+		-DNO_SHA384
+LDADD+=	-lmd
+
+.include <bsd.prog.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201209252133.q8PLXbY8099315>