Make automake builds less noisy by default

The old commit only silenced parts of the build,
while the new one silences the whole build.

Fixes: 4e362bba34.
Signed-off-by: Stefan Weil <sw@weilnetz.de>
This commit is contained in:
Stefan Weil 2021-09-24 15:01:51 +02:00
parent c1a56cceb9
commit 0d479d5288
3 changed files with 5 additions and 4 deletions

View File

@ -7,6 +7,7 @@
* Extend URI support for Tesseract with libcurl
* Abort LSTM training with integer model (fixes issue #1573)
* Update documentation
* Make automake builds less noisy by default
2019-12-26 - V4.1.1
* Implemented sw build (cppan is depreciated)

View File

@ -1,8 +1,4 @@
## run autogen.sh to create Makefile.in from this file
# Be less noisy by default. Can be overridden with `make V=1`.
V = 0
ACLOCAL_AMFLAGS = -I m4
if ENABLE_TRAINING

View File

@ -76,6 +76,10 @@ AM_CONDITIONAL([OSX], false)
AM_CONDITIONAL([GRAPHICS_DISABLED], false)
AC_SUBST([AM_CPPFLAGS])
# Be less noisy by default.
# Can be overridden with `configure --disable-silent-rules` or with `make V=1`.
AM_SILENT_RULES([yes])
OPENCL_INC="/opt/AMDAPP/include"
OPENCL_LIBS="-lOpenCL"
#############################