diff options
author | Mateusz Piotrowski <0mp@FreeBSD.org> | 2020-09-27 17:46:39 +0000 |
---|---|---|
committer | Mateusz Piotrowski <0mp@FreeBSD.org> | 2020-09-27 17:46:39 +0000 |
commit | 8833c9bd2b01aae72c851672c84493b94214a016 (patch) | |
tree | ad45800832662dc62d75b1ed9999450b2dce3a98 | |
parent | fix run-depends of gnome-control-center after r550228 (diff) |
Print the name of the problematic archive on failed extraction
It is useful when working with a port with a large number of distfiles.
In case one of them is failing to extract, the framework would print out
its name to ease debugging.
Approved by: portmgr
Differential Revision: https://reviews.freebsd.org/D25178
Notes
Notes:
svn path=/head/; revision=550291
-rw-r--r-- | Mk/bsd.port.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index 7581ea96e62e..aa8c06bc2ded 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -3160,6 +3160,7 @@ do-extract: ${EXTRACT_WRKDIR} @for file in ${EXTRACT_ONLY}; do \ if ! (cd ${EXTRACT_WRKDIR} && ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${_DISTDIR}/$$file ${EXTRACT_AFTER_ARGS});\ then \ + ${ECHO_MSG} "===> Failed to extract \"${_DISTDIR}/$$file\"."; \ exit 1; \ fi; \ done |