From b921abc2db4e028f35fc86f6b93040392697af4e Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Sun, 12 Jun 2016 23:29:54 +0200 Subject: [PATCH] build: unsilent silent rules when running with V=1 --- src/lib/Makefile.am | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/Makefile.am b/src/lib/Makefile.am index b41ae794..9fb3f5d3 100644 --- a/src/lib/Makefile.am +++ b/src/lib/Makefile.am @@ -41,9 +41,9 @@ atom-glue.c: $(ATOM_FILES) Makefile for (atom in atoms) { print " init_atom_map_"atom"();" } \ print "}"; }' ) \ > $@.tmp - @$(GREP) -q init_atom_builder_ $@.tmp - @$(GREP) -q init_atom_map_ $@.tmp - @mv $@.tmp $@ + $(AM_V_at)$(GREP) -q init_atom_builder_ $@.tmp + $(AM_V_at)$(GREP) -q init_atom_map_ $@.tmp + $(AM_V_at)mv $@.tmp $@ CLEANFILES = atom-glue.c # -version-info format is `current`:`revision`:`age`. For more details, see: -- 2.39.5