From 6babdc18834dea7d1361604c1ee6e3685a6f4c8a Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Fri, 4 Dec 2015 18:53:24 -0800 Subject: [PATCH] check-compose: build before install and set prefix --- roles/check-compose/tasks/main.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/roles/check-compose/tasks/main.yml b/roles/check-compose/tasks/main.yml index 203ba09768..bdb0453dbc 100644 --- a/roles/check-compose/tasks/main.yml +++ b/roles/check-compose/tasks/main.yml @@ -52,8 +52,14 @@ dest: /root/fedora-qa register: gitqa +- name: Build check-compose + command: "make prefix=/usr" + args: + chdir: /root/fedora-qa/check-compose + when: "gitqa|changed" + - name: Install check-compose - command: "make install" + command: "make prefix=/usr install" args: chdir: /root/fedora-qa/check-compose when: "gitqa|changed"