summaryrefslogtreecommitdiff
path: root/Mk
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1994-08-21 17:42:24 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1994-08-21 17:42:24 +0000
commit1560b68cb87a846ecd6807d17e76a3bfa3be7396 (patch)
tree497d3a6434a2a321e65d4492130569b2b961fb34 /Mk
parentGet the .configure_done stuff working - it wasn't in the right place. (diff)
Make things a little more user-friendly
Submitted by: jkh
Notes
Notes: svn path=/head/; revision=13
Diffstat (limited to 'Mk')
-rw-r--r--Mk/bsd.port.mk8
1 files changed, 5 insertions, 3 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk
index 89e7beaacefa..acc994bdb1ce 100644
--- a/Mk/bsd.port.mk
+++ b/Mk/bsd.port.mk
@@ -1,7 +1,7 @@
# bsd.port.mk - 940820 Jordan K. Hubbard.
# This file is in the public domain.
#
-# $Id: bsd.port.mk,v 1.5 1994/08/21 16:37:09 jkh Exp $
+# $Id: bsd.port.mk,v 1.6 1994/08/21 16:55:54 jkh Exp $
#
# Supported Variables and their behaviors:
@@ -91,14 +91,16 @@ package:
build: configure
@echo "===> Building for ${DISTNAME}"
.if defined(DEPENDS)
+ @echo "===> ${DISTNAME} depends on: ${DEPENDS}"
@for i in $(DEPENDS); do \
- echo "===> ${DISTNAME} depends on $$i - submaking"; \
+ echo "===> Verifying build for $$i"; \
if [ ! -d ${PORTSDIR}/$$i ]; then \
- echo " No directory ${PORTSDIR}/$$i. Skipping.."; \
+ echo ">> No directory for ${PORTSDIR}/$$i. Skipping.."; \
else \
(cd ${PORTSDIR}/$$i; ${MAKE}) ; \
fi \
done
+ @echo "===> Returning to build of ${DISTNAME}"
.endif
.if defined(USE_GMAKE)
@(cd ${WRKSRC}; ${GMAKE} all)