summaryrefslogtreecommitdiff
path: root/Mk/bsd.port.mk
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1995-05-02 13:49:01 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1995-05-02 13:49:01 +0000
commit4bf8cbcdc97f7aa48ec9a7167552a2fdbac4a275 (patch)
treeb39585418ca4f69ece1d182d77276225881ce09c /Mk/bsd.port.mk
parentChange package to do-package. (diff)
Add an mtree line to the install target.
Notes
Notes: svn path=/head/; revision=1586
Diffstat (limited to 'Mk/bsd.port.mk')
-rw-r--r--Mk/bsd.port.mk7
1 files changed, 6 insertions, 1 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk
index b0daf9e63ced..716d824ab61d 100644
--- a/Mk/bsd.port.mk
+++ b/Mk/bsd.port.mk
@@ -3,7 +3,7 @@
# bsd.port.mk - 940820 Jordan K. Hubbard.
# This file is in the public domain.
#
-# $Id: bsd.port.mk,v 1.151 1995/04/28 15:40:37 jkh Exp $
+# $Id: bsd.port.mk,v 1.152 1995/04/30 12:28:43 asami Exp $
#
# Please view me with 4 column tabs!
@@ -237,6 +237,8 @@ EXTRACT_BEFORE_ARGS?= -xzf
.if !defined(MTREE_LOCAL) && exists(/etc/mtree/BSD.local.dist)
MTREE_LOCAL= /etc/mtree/BSD.local.dist
.endif
+MTREE_CMD?= mtree
+MTREE_ARGS?= -U -f ${MTREE_LOCAL} -d -e -p
PKG_CMD?= pkg_create
.if !defined(PKG_ARGS)
@@ -731,6 +733,9 @@ install: build ${INSTALL_COOKIE}
${INSTALL_COOKIE}:
@${ECHO_MSG} "===> Installing for ${PKGNAME}"
+.if !defined(USE_X11) && !defined(USE_IMAKE) && defined(MTREE_LOCAL)
+ ${MTREE_CMD} ${MTREE_ARGS} ${PREFIX}/;
+.endif
.if target(pre-install)
@${MAKE} ${.MAKEFLAGS} pre-install
.endif