]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
Default to silent make rules unconditionally
authorJoel Rosdahl <joel@rosdahl.net>
Sun, 14 Oct 2018 20:18:25 +0000 (22:18 +0200)
committerJoel Rosdahl <joel@rosdahl.net>
Sun, 14 Oct 2018 20:18:25 +0000 (22:18 +0200)
Makefile.in
configure.ac

index a4097f3a60a3b356d973af525254b4fedb9969f0..f30aa9ee84a7596c8f83338c966725f096ccc4a4 100644 (file)
@@ -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),@)
 
index c1ac101d3f06cf3ada2ce70f9771094183e72cbb..8dfba4bcce538732369cac1e6a8342bcb98ed10f 100644 (file)
@@ -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)