aboutsummaryrefslogtreecommitdiff
path: root/share/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
commitd6d644f14f064a7d91a818c27e698a2cb053499c (patch)
tree1211438216bc0215b16c3d40d2e6dd1c936ad1e2 /share/mk
parentc5e15878bda51371907070c67d17f159849f3bd1 (diff)
downloadsrc-d6d644f14f064a7d91a818c27e698a2cb053499c.tar.gz
src-d6d644f14f064a7d91a818c27e698a2cb053499c.zip
Add an mtree line to the install target.
Notes
Notes: svn path=/head/; revision=8223
Diffstat (limited to 'share/mk')
-rw-r--r--share/mk/bsd.port.mk7
1 files changed, 6 insertions, 1 deletions
diff --git a/share/mk/bsd.port.mk b/share/mk/bsd.port.mk
index b0daf9e63ced..716d824ab61d 100644
--- a/share/mk/bsd.port.mk
+++ b/share/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