From: Andrea Bolognani Date: Thu, 12 Dec 2019 09:52:02 +0000 (+0100) Subject: ci: Fix VPATH builds X-Git-Tag: v6.0.0-rc1~345 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4af076f1636c42fce435fe140596f8bd4e3e2f4f;p=thirdparty%2Flibvirt.git ci: Fix VPATH builds The CI build machinery is intentionally not handled by autotools, so for VPATH builds - which are mandatory now - we need to make sure we're looking into $(srcdir). Signed-off-by: Andrea Bolognani Reviewed-by: Daniel P. Berrangé --- diff --git a/Makefile.am b/Makefile.am index 15df6ed68e..4edb3fdd43 100644 --- a/Makefile.am +++ b/Makefile.am @@ -148,4 +148,4 @@ gen-AUTHORS: fi ci-%: - $(MAKE) -C ci/ $@ + $(MAKE) -C $(srcdir)/ci/ $@