17747240 gmake setup is masking pkglint failures s11-update
authorVladimir Marek <Vladimir.Marek@oracle.com>
Wed, 20 Nov 2013 15:46:14 +0100
branchs11-update
changeset 2888 adc592c67ee4
parent 2887 07e16b692d34
child 2890 47c675945a45
17747240 gmake setup is masking pkglint failures
components/Makefile
--- a/components/Makefile	Wed Jan 08 09:16:46 2014 -0800
+++ b/components/Makefile	Wed Nov 20 15:46:14 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