← Back to team overview

hipl-core team mailing list archive

[Branch ~hipl-core/hipl/trunk] Rev 4886: Enable silent build rules if supported by the automake version being used.

 

------------------------------------------------------------
revno: 4886
committer: Diego Biurrun <diego@xxxxxxxxxx>
branch nick: trunk
timestamp: Wed 2010-08-18 15:05:50 +0200
message:
  Enable silent build rules if supported by the automake version being used.
modified:
  configure.ac


--
lp:hipl
https://code.launchpad.net/~hipl-core/hipl/trunk

Your team HIPL core team is subscribed to branch lp:hipl.
To unsubscribe from this branch go to https://code.launchpad.net/~hipl-core/hipl/trunk/+edit-subscription
=== modified file 'configure.ac'
--- configure.ac	2010-06-09 13:50:19 +0000
+++ configure.ac	2010-08-18 13:05:50 +0000
@@ -25,6 +25,8 @@
 
 AM_INIT_AUTOMAKE([foreign subdir-objects])
 AM_PROG_CC_C_O # Required in CentOS
+# Enable silent rules only when available (automake 1.11 or later).
+m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
 
 # Check for python for build-system and tools directory
 AM_PATH_PYTHON([2.4.3],, [AC_MSG_ERROR([min. required python version not found])])