From: Joel Rosdahl Date: Sun, 14 Oct 2018 20:18:25 +0000 (+0200) Subject: Default to silent make rules unconditionally X-Git-Tag: v3.5~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=27495ded89fc5f872850feef7750b07ae3aaf987;p=thirdparty%2Fccache.git Default to silent make rules unconditionally --- diff --git a/Makefile.in b/Makefile.in index a4097f3a6..f30aa9ee8 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,5 +1,3 @@ -verbose = @verbose@ - srcdir = @srcdir@ builddir = @builddir@ VPATH = @srcdir@ @@ -27,7 +25,7 @@ all_cppflags = @DEFS@ -DSYSCONFDIR=$(sysconfdir) -I. -I$(srcdir)/src -I$(builddi extra_libs = @extra_libs@ v_at_0 = yes -v_at_ = $(v_at_$(verbose)) +v_at_ = $(v_at_0) quiet := $(v_at_$(V)) Q=$(if $(quiet),@) diff --git a/configure.ac b/configure.ac index c1ac101d3..8dfba4bcc 100644 --- a/configure.ac +++ b/configure.ac @@ -16,16 +16,6 @@ case $host in ;; esac -AC_ARG_ENABLE([silent-rules], - [AS_HELP_STRING([--enable-silent-rules], - [less verbose build output (undo: `make V=1')])]) -case $enable_silent_rules in - yes) verbose=0;; - no) verbose=1;; - *) verbose=1;; -esac - -AC_SUBST(verbose) AC_SUBST(extra_libs) AC_SUBST(no_implicit_fallthrough_warning) AC_SUBST(getopt_long_c)