From 1befebadf2bc7df7fd0d8cdb873e941bd560bb44 Mon Sep 17 00:00:00 2001 From: tituspijean Date: Wed, 14 Jul 2021 16:14:30 +0200 Subject: [PATCH] Silence make warnings --- scripts/install | 4 ++-- scripts/upgrade | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/install b/scripts/install index 5a41dd6..024bd54 100755 --- a/scripts/install +++ b/scripts/install @@ -184,8 +184,8 @@ ynh_script_progression --message="Compiling guacd..." --weight=30 pushd "$final_path/.guacd-src" || ynh_die ./configure --enable-allow-freerdp-snapshots --prefix="$final_path" --datadir="$final_path" --with-freerdp-plugin-dir="$final_path/lib/x86_64-linux-gnu/freerdp2" - make - make install + ynh_exec_warn_less make + ynh_exec_warn_less make install popd || ynh_die #================================================= diff --git a/scripts/upgrade b/scripts/upgrade index d21cdf5..69407ab 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -158,8 +158,8 @@ ynh_script_progression --message="Compiling guacd..." --weight=30 pushd "$final_path/.guacd-src" || ynh_die ./configure --enable-allow-freerdp-snapshots --prefix="$final_path" --datadir="$final_path" --with-freerdp-plugin-dir="$final_path/lib/x86_64-linux-gnu/freerdp2" - make - make install + ynh_exec_warn_less make + ynh_exec_warn_less make install popd || ynh_die #=================================================