Remove verboseness from build.sh

Got accidentally committed.
This commit is contained in:
Joerg Wunsch 2022-03-07 23:27:54 +01:00
parent a4cbd5c6fc
commit e2995857ac
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ case "${ostype}" in
;;
esac
cmake ${build_flags} ${extra_enable} -D CMAKE_VERBOSE_MAKEFILE:BOOL=ON -D CMAKE_BUILD_TYPE=${build_type} -B build_${ostype} ||\
cmake ${build_flags} ${extra_enable} -D CMAKE_BUILD_TYPE=${build_type} -B build_${ostype} ||\
{ echo "CMake failed."; exit 1; }
cmake --build build_${ostype} ||\
{ echo "Build failed."; exit 1; }