summaryrefslogtreecommitdiff
path: root/Mk/bsd.port.mk
diff options
context:
space:
mode:
authorSatoshi Asami <asami@FreeBSD.org>1997-08-20 03:44:14 +0000
committerSatoshi Asami <asami@FreeBSD.org>1997-08-20 03:44:14 +0000
commitb393ca04e01e89bc8c571223d05a79f41faed8d8 (patch)
tree947df249a8f3afc55ae0bd9eb13c1218b997535d /Mk/bsd.port.mk
parentupdate MASTER_SITES (diff)
(1) Be nicer about mtree file missing. (Actually, just suggest where
you can get one from.) (2) Use "reinstall" as DEPENDS_TARGET if target is "reinstall". In particular, this will make it possible to do a "make reinstall" on several NFS clients and have them install all dependencies correctly. Tested by: davidn
Notes
Notes: svn path=/head/; revision=7624
Diffstat (limited to 'Mk/bsd.port.mk')
-rw-r--r--Mk/bsd.port.mk16
1 files changed, 13 insertions, 3 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk
index 9e244f7ae3f5..ea02f3ea9751 100644
--- a/Mk/bsd.port.mk
+++ b/Mk/bsd.port.mk
@@ -1,7 +1,7 @@
#-*- mode: Fundamental; tab-width: 4; -*-
# ex:ts=4
#
-# $Id: bsd.port.mk,v 1.262 1997/07/10 02:29:51 asami Exp $
+# $Id: bsd.port.mk,v 1.263 1997/07/17 17:47:36 markm Exp $
# $NetBSD: $
#
# bsd.port.mk - 940820 Jordan K. Hubbard.
@@ -791,8 +791,12 @@ all: build
.endif
.if !defined(DEPENDS_TARGET)
+.if make(reinstall)
+DEPENDS_TARGET= reinstall
+.else
DEPENDS_TARGET= install
.endif
+.endif
################################################################
# The following are used to create easy dummy targets for
@@ -1113,7 +1117,13 @@ _PORT_USE: .USE
.if make(real-install)
.if !defined(NO_MTREE)
@if [ `id -u` = 0 ]; then \
- ${MTREE_CMD} ${MTREE_ARGS} ${PREFIX}/; \
+ if [ ! -f ${MTREE_FILE} ]; then \
+ ${ECHO_MSG} "Error: mtree file \"${MTREE_FILE}\" is missing."; \
+ ${ECHO_MSG} "Copy it from a suitable location (e.g., /usr/src/etc/mtree) and try again."; \
+ exit 1; \
+ else \
+ ${MTREE_CMD} ${MTREE_ARGS} ${PREFIX}/; \
+ fi; \
else \
${ECHO_MSG} "Warning: not superuser, can't run mtree."; \
${ECHO_MSG} "Become root and try again to ensure correct permissions."; \
@@ -1252,7 +1262,7 @@ checkpatch:
.if !target(reinstall)
reinstall:
@${RM} -f ${INSTALL_COOKIE} ${PACKAGE_COOKIE}
- @${MAKE} install
+ @DEPENDS_TARGET=${DEPENDS_TARGET} ${MAKE} install
.endif
################################################################