Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 13 Jun 2013 09:32:39 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r320745 - head/Mk
Message-ID:  <201306130932.r5D9WdtR087707@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201306130932.r5D9WdtR087707>