Commit f2ba089b authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Fixed verbose flag for ninja

parent d19a40ec
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -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