Skip to content

Commit 193396a

Browse files
author
Mark Wielaard
committed
Make make more silent.
Silent rules already are the default, but automake and make both still tell which directory is being entered/build. Disable printing from make. Signed-off-by: Mark Wielaard <[email protected]>
1 parent 9d1e236 commit 193396a

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

ChangeLog

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2015-12-31 Mark Wielaard <[email protected]>
2+
3+
* Makefile.am (AM_MAKEFLAGS): Set --no-print-directory.
4+
15
2015-10-16 Mark Wielaard <[email protected]>
26

37
* configure.ac: Make zlib mandatory.

Makefile.am

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## Process this file with automake to create Makefile.in
22
## Configure input file for elfutils.
33
##
4-
## Copyright (C) 1996-2002, 2003, 2004, 2005, 2006, 2008, 2009 Red Hat, Inc.
4+
## Copyright (C) 1996-2006, 2008, 2009, 2015 Red Hat, Inc.
55
##
66
## This file is part of elfutils.
77
##
@@ -20,6 +20,10 @@
2020
##
2121
ACLOCAL_AMFLAGS = -I m4
2222

23+
# automake already tells which subdir is being entered.
24+
# Don't make make repeat.
25+
AM_MAKEFLAGS = --no-print-directory
26+
2327
pkginclude_HEADERS = version.h
2428

2529
# Add doc back when we have some real content.

0 commit comments

Comments
 (0)