17747240 gmake setup is masking pkglint failures
authorVladimir Marek <Vladimir.Marek@oracle.com>
Wed, 06 Nov 2013 09:39:47 +0100
changeset 1558 6cdada0dd56a
parent 1557 e419cc20d324
child 1559 d5757b9bb1e4
17747240 gmake setup is masking pkglint failures
components/Makefile
--- a/components/Makefile	Mon Nov 18 04:25:43 2013 -0800
+++ b/components/Makefile	Wed Nov 06 09:39:47 2013 +0100
@@ -108,10 +108,13 @@
 
 $(WS_LINT_CACHE):	$(WS_LOGS) tools
 ifdef CANONICAL_REPO
-	@echo "Generating pkglint(1) cache from $(CANONICAL_REPO)..."
+	@echo "Generating pkglint(1) cache from CANONICAL_REPO $(CANONICAL_REPO)..."
 	@(echo $(DUMMYPKG) | $(PKGLINT) \
 		-c $(WS_LINT_CACHE) -r $(CANONICAL_REPO) /dev/fd/0 \
-		>$(WS_LOGS)/naughty-canonical-repo-actions 2>&1 ; exit 0)
+		>$(WS_LOGS)/naughty-canonical-repo-actions 2>&1 || \
+		( echo "pkglint(1) failed, please see $(WS_LOGS)/naughty-canonical-repo-actions"; \
+		  exit 1 ) \
+	)
 else
 	$(MKDIR) $(WS_LINT_CACHE)
 endif