From d7c5679bc10a7e18fc8d3b0ba4d35d353194ac09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A1n=20Tomko?= Date: Wed, 18 Dec 2019 14:42:46 +0100 Subject: [PATCH] build: error out when check-augeas fails MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes: 2ffbdabb859594256d45c1b48521dd6501629852 Signed-off-by: Ján Tomko Reviewed-by: Daniel P. Berrangé --- src/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile.am b/src/Makefile.am index f3d4c28c6d..c9b5eeba47 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -342,7 +342,7 @@ check-augeas: $(augeas_DATA) $(augeastest_DATA) FILE=$$(basename "$$f"); \ "$(AUGPARSE)" \ -I "$(srcdir)/$$DIR" -I "$(builddir)/$$DIR" \ - "$$DIR/$$FILE"; \ + "$$DIR/$$FILE" || exit 1; \ done; \ fi .PHONY: check-augeas