From 8787e032281e0715a4f405a2ce4f2529cd73e9d7 Mon Sep 17 00:00:00 2001 From: Martin Basti Date: Fri, 29 Apr 2016 16:28:28 +0200 Subject: [PATCH] make: fail when ACI.txt or API.txt differs from values in source code This regression was caused by commit 6acaf73b0c6f7301d5a5d4292a4f9926cc370867 before this commit make rpms failed when API.txt did not match api https://fedorahosted.org/freeipa/ticket/5865 Reviewed-By: Lukas Slebodnik --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 82e6936a7..9cc4d40d1 100644 --- a/Makefile +++ b/Makefile @@ -188,7 +188,7 @@ version-update: release-update fi if [ "$(SKIP_API_VERSION_CHECK)" != "yes" ]; then \ - ./makeapi --validate; \ + ./makeapi --validate && \ ./makeaci --validate; \ fi