diff options
author | Jan Engelhardt <jengelh@inai.de> | 2017-12-14 19:43:43 +0100 |
---|---|---|
committer | Niels de Vos <ndevos@redhat.com> | 2018-01-26 12:58:03 +0000 |
commit | c3647b747af88e40334e927dafdbf88154b308f0 (patch) | |
tree | e57c6684dea96aec8f9517fbf40d3b9e1599328c /configure.ac | |
parent | 1a519f4bf960c6aafecfb189e8ec8b153abcf6ce (diff) |
build: restore ability to control verbosity settings
`make V=1` is broken — no commands are printed whatsoever. At the
same time, `make V=0` *also* is broken in that no summary lines
("CC foo.o") are printed, either. Kill the annoying hardcoded
--quiet in configure.ac, since it seems to override everything that
automake offers.
Change-Id: I377c0e0469619a33586afb4a93dde6d241e7bc21
Fixes: #381
BUG: 1539023
Original-author: Jan Engelhardt <jengelh@inai.de>
Signed-off-by: Niels de Vos <ndevos@redhat.com>
[ndevos: silence rpc/xdr/gen rpgcen]
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/configure.ac b/configure.ac index 8eded379039..568ac397a7b 100644 --- a/configure.ac +++ b/configure.ac @@ -25,14 +25,6 @@ if make --help 2>&1 | grep -q no-print-directory; then AM_MAKEFLAGS="$AM_MAKEFLAGS --no-print-directory"; fi -if make --help 2>&1 | grep -q quiet; then - AM_MAKEFLAGS="$AM_MAKEFLAGS --quiet" -fi - -if libtool --help 2>&1 | grep -q quiet; then - AM_LIBTOOLFLAGS="--quiet"; -fi - AC_CONFIG_HEADERS([config.h site.h]) AC_CONFIG_FILES([Makefile |