From f47e94cb664ab18dd6c63dcc20a3d4de8757dadc Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer <maxim.cournoyer@savoirfairelinux.com> Date: Fri, 26 Mar 2021 21:57:06 -0400 Subject: [PATCH] build.py: Build with verbosity. Seeing which commands are executed during the build is useful to debug when something goes wrong. Change-Id: I2acec49b519c9070fbfa2d18d14e2b459c9bc76f --- scripts/install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/install.sh b/scripts/install.sh index 3c075b40..8fcedca7 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -106,7 +106,7 @@ if [ "${global}" = "true" ]; then else ./configure $sharedLib "$CONFIGURE_FLAGS" --prefix="${INSTALL}/daemon" fi -make -j"${proc}" +make -j"${proc}" V=1 make_install "${global}" "${priv_install}" # For the client-qt, verify system's version if no path provided @@ -153,7 +153,7 @@ else fi echo "info: Configuring LRC with flags: ${lrc_cmake_flags[*]}" cmake .. "${lrc_cmake_flags[@]}" -make -j"${proc}" +make -j"${proc}" V=1 make_install "${global}" "${priv_install}" # client @@ -189,5 +189,5 @@ else fi echo "info: Configuring $client client with flags: ${client_cmake_flags[*]}" cmake .. "${client_cmake_flags[@]}" -make -j"${proc}" +make -j"${proc}" V=1 make_install "${global}" "${priv_install}" -- GitLab