diff options
author | infirit <[email protected]> | 2015-07-23 15:32:34 +0200 |
---|---|---|
committer | infirit <[email protected]> | 2015-07-23 15:32:34 +0200 |
commit | 0a768b218d713134d8d9dc5f927f2b7b4cdc65de (patch) | |
tree | 6783cc1bc1b82c1354c6ba2f445400096c64221a | |
parent | fda48486887af5cf04f58cb977c0143f94d2448b (diff) | |
download | mozo-0a768b218d713134d8d9dc5f927f2b7b4cdc65de.tar.bz2 mozo-0a768b218d713134d8d9dc5f927f2b7b4cdc65de.tar.xz |
Use AM_SILENT_RULES
-rw-r--r-- | Makefile.am | 4 | ||||
-rw-r--r-- | Mozo/Makefile.am | 2 | ||||
-rw-r--r-- | configure.ac | 1 |
3 files changed, 4 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am index 53f3db0..1e4648a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -12,8 +12,8 @@ DISTCLEANFILES = ChangeLog DISTCHECK_CONFIGURE_FLAGS = --disable-icon-update mozo: mozo.in - sed -e s!\@PYTHON\@!@PYTHON@! \ - -e s!\@PYOPTIONS\@!-OOt! \ + $(AM_V_GEN)sed -e s!\@PYTHON\@!@PYTHON@! \ + -e s!\@PYOPTIONS\@!-OOt! \ < $< > $@ mozo: Makefile diff --git a/Mozo/Makefile.am b/Mozo/Makefile.am index 31217e1..50f1f02 100644 --- a/Mozo/Makefile.am +++ b/Mozo/Makefile.am @@ -5,7 +5,7 @@ app_PYTHON = __init__.py MainWindow.py MenuEditor.py util.py nodist_app_PYTHON = config.py config.py: config.py.in - sed \ + $(AM_V_GEN)sed \ -e s!\@prefix\@!$(prefix)! \ -e s!\@datadir\@!$(datadir)! \ -e s!\@pkgdatadir\@!$(pkgdatadir)! \ diff --git a/configure.ac b/configure.ac index 086629c..34003b2 100644 --- a/configure.ac +++ b/configure.ac @@ -2,6 +2,7 @@ dnl -*- Mode: autoconf -*- dnl Process this file with autoconf to produce a configure script. AC_PREREQ(2.53) AC_INIT(mozo, 1.10.1, http://www.mate-desktop.org) +m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])]) AC_CONFIG_SRCDIR(mozo.in) AC_CONFIG_HEADERS([config.h]) AM_INIT_AUTOMAKE([1.7 dist-xz no-dist-gzip check-news]) |