From f689d536a0081246b16687ae413dd8697efd857e Mon Sep 17 00:00:00 2001 From: Matthew Stobbs Date: Mon, 12 May 2025 19:46:09 -0600 Subject: [PATCH] fixed broken aquamarine build Signed-off-by: Matthew Stobbs --- tasks/helpers/cmake_build.yml | 6 +++--- vars/src/aquamarine.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tasks/helpers/cmake_build.yml b/tasks/helpers/cmake_build.yml index bd6d2a7..da04057 100644 --- a/tasks/helpers/cmake_build.yml +++ b/tasks/helpers/cmake_build.yml @@ -1,18 +1,18 @@ # vim: set filetype=yaml.ansible : --- -- name: Configure {{ repo.git_path }} +- name: "Configure {{ repo.git_path }}" ansible.builtin.command: creates: "{{ src_path }}/build" chdir: "{{ src_path }}" argv: "{{ configure }}" -- name: Build {{ repo.git_path }} +- name: "Build {{ repo.git_path }}" ansible.builtin.command: creates: "{{ build_creates }}" chdir: "{{ src_path }}" argv: "{{ build }}" -- name: Install {{ repo.git_push }} +- name: "Install {{ repo.git_push }}" ansible.builtin.command: creates: "{{ install_creates }}" chdir: "{{ src_path }}" diff --git a/vars/src/aquamarine.yml b/vars/src/aquamarine.yml index f9bb8f1..91252ba 100644 --- a/vars/src/aquamarine.yml +++ b/vars/src/aquamarine.yml @@ -46,7 +46,7 @@ aquamarine: - all - -j - "{{ ansible_processor_nproc | int }}" - build_installs: "{{ root_prefix }}/{{ lib_path }}/libaquamarine.so" + install_creates: "{{ root_prefix }}/{{ lib_path }}/libaquamarine.so" install: - cmake - --install