summaryrefslogtreecommitdiff
path: root/Mk/bsd.port.mk
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1995-01-10 12:23:44 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1995-01-10 12:23:44 +0000
commitdb0107b3e0f66bc331c9a9c503c94afd1b1a3b68 (patch)
tree7a39677735cedebb8e2de68e372a4336ba8a9adc /Mk/bsd.port.mk
parentUpgrade to version 7.0 (diff)
Catch case where extraction fails. Thanks!
Notes
Notes: svn path=/head/; revision=741
Diffstat (limited to 'Mk/bsd.port.mk')
-rw-r--r--Mk/bsd.port.mk10
1 files changed, 7 insertions, 3 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk
index 7a85bf424257..bee250383872 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.97 1995/01/05 08:15:53 asami Exp $
+# $Id: bsd.port.mk,v 1.98 1995/01/06 22:14:12 ache Exp $
#
# Please view me with 4 column tabs!
@@ -549,11 +549,15 @@ ${EXTRACT_COOKIE}:
@mkdir -p ${WRKDIR}
.if defined(EXTRACT_ONLY)
@for file in ${EXTRACT_ONLY}; do \
- ${EXTRACT_CMD} ${EXTRACT_ARGS} ${DISTDIR}/$$file ; \
+ if ${EXTRACT_CMD} ${EXTRACT_ARGS} ${DISTDIR}/$$file; then \
+ exit 1; \
+ fi \
done
.else
@for file in ${DISTFILES}; do \
- ${EXTRACT_CMD} ${EXTRACT_ARGS} ${DISTDIR}/$$file ; \
+ if ${EXTRACT_CMD} ${EXTRACT_ARGS} ${DISTDIR}/$$file; then \
+ exit 1; \
+ fi \
done
.endif
@${TOUCH} ${TOUCH_FLAGS} ${EXTRACT_COOKIE}