Skip to content
Snippets Groups Projects
Unverified Commit f47e94cb authored by Maxim Cournoyer's avatar Maxim Cournoyer
Browse files

build.py: Build with verbosity.

Seeing which commands are executed during the build is useful to debug
when something goes wrong.

Change-Id: I2acec49b519c9070fbfa2d18d14e2b459c9bc76f
parent 2a0cb09a
No related branches found
No related tags found
No related merge requests found
......@@ -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}"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment