From ef30e1e136e99f6d59db1bec10271bf17deb9404 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Pi=C3=A9dallu?= Date: Mon, 10 Jun 2024 22:54:57 +0200 Subject: [PATCH] cmake_install_prefix --- scripts/_common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/_common.sh b/scripts/_common.sh index b1ab0eb..886c10b 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -32,7 +32,7 @@ function build_libheif { ynh_exec_as "$app" mkdir build pushd build ynh_exec_and_print_stderr_only_if_error ynh_exec_as "$app" \ - cmake --preset=release --prefix="$install_dir/local" -DWITH_GDK_PIXBUF=OFF -G Ninja .. + cmake --preset=release -DCMAKE_INSTALL_PREFIX="$install_dir/local" -DWITH_GDK_PIXBUF=OFF -G Ninja .. ynh_exec_and_print_stderr_only_if_error ynh_exec_as "$app" \ ninja ynh_exec_and_print_stderr_only_if_error ynh_exec_as "$app" \