From: Mark Wooding Date: Tue, 16 Jul 2013 14:32:47 +0000 (+0100) Subject: Build: Use `silent-rules'. X-Git-Tag: 1.2.3~2^2~3 X-Git-Url: https://git.distorted.org.uk/~mdw/checkpath/commitdiff_plain/4e1b540383a7491bc7cc969abfedeb9ce4627c20 Build: Use `silent-rules'. --- diff --git a/Makefile.am b/Makefile.am index b23bcbc..31e97ca 100644 --- a/Makefile.am +++ b/Makefile.am @@ -73,11 +73,11 @@ CLEANFILES += checkpath.pc EXTRA_DIST += checkpath.pc.in checkpath.pc: checkpath.pc.in Makefile - $(top_srcdir)/config/confsubst $(srcdir)/checkpath.pc.in >$@.new \ + $(AM_V_GEN)$(top_srcdir)/config/confsubst \ + $(srcdir)/checkpath.pc.in >$@.new \ prefix=$(prefix) exec_prefix=$(exec_prefix) \ libdir=$(libdir) includedir=$(includedir) \ - VERSION=$(VERSION) - mv $@.new $@ + VERSION=$(VERSION) && mv $@.new $@ ###-------------------------------------------------------------------------- ### Other finishing touches. diff --git a/configure.ac b/configure.ac index f433382..759333e 100644 --- a/configure.ac +++ b/configure.ac @@ -27,6 +27,7 @@ mdw_AUTO_VERSION AC_INIT([Checkpath], AUTO_VERSION, [mdw@distorted.org.uk]) AC_CONFIG_SRCDIR([checkpath.c]) AC_CONFIG_AUX_DIR([config]) +mdw_SILENT_RULES AM_INIT_AUTOMAKE([foreign]) dnl--------------------------------------------------------------------------