Skip to content
Snippets Groups Projects
Commit f2ba089b authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Fixed verbose flag for ninja

parent d19a40ec
No related branches found
No related tags found
No related merge requests found
......@@ -223,6 +223,11 @@ else
make_target="all"
fi
# make expects VERBOSE=1, ninja expects -v
if [[ "$make" != "make" ]] && [[ "$VERBOSE" ]]; then
VERBOSE="-v"
fi
$make ${VERBOSE} $make_target
if [[ ${WITH_TESTS} == "yes" ]]; then
......
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