svn commit: r320745 - head/Mk

Baptiste Daroussin bapt at FreeBSD.org
Thu Jun 13 09:32:39 UTC 2013


Author: bapt
Date: Thu Jun 13 09:32:39 2013
New Revision: 320745
URL: http://svnweb.freebsd.org/changeset/ports/320745

Log:
  Fail in case a checksum fails with bmake

Modified:
  head/Mk/bsd.port.mk

Modified: head/Mk/bsd.port.mk
==============================================================================
--- head/Mk/bsd.port.mk	Thu Jun 13 09:28:22 2013	(r320744)
+++ head/Mk/bsd.port.mk	Thu Jun 13 09:32:39 2013	(r320745)
@@ -4799,7 +4799,8 @@ makesum: check-checksum-algorithms
 
 .if !target(checksum)
 checksum: fetch check-checksum-algorithms
-	@${checksum_init} \
+	@set -e ; \
+	${checksum_init} \
 	if [ -f ${DISTINFO_FILE} ]; then \
 		cd ${DISTDIR}; OK="";\
 		for file in ${_CKSUMFILES}; do \


More information about the svn-ports-all mailing list