You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by be...@apache.org on 2012/01/24 23:02:26 UTC

svn commit: r1235521 - /incubator/mesos/trunk/configure.ac

Author: benh
Date: Tue Jan 24 22:02:26 2012
New Revision: 1235521

URL: http://svn.apache.org/viewvc?rev=1235521&view=rev
Log:
Removed "silent rules" so older (and newer apparently) build environments work without problems. This issue was first mentioned by John Sirois on Mac OS X 10.7 and documented in MESOS-126.

Modified:
    incubator/mesos/trunk/configure.ac

Modified: incubator/mesos/trunk/configure.ac
URL: http://svn.apache.org/viewvc/incubator/mesos/trunk/configure.ac?rev=1235521&r1=1235520&r2=1235521&view=diff
==============================================================================
--- incubator/mesos/trunk/configure.ac (original)
+++ incubator/mesos/trunk/configure.ac Tue Jan 24 22:02:26 2012
@@ -26,10 +26,7 @@ AC_CANONICAL_BUILD
 AC_CANONICAL_TARGET
 
 # Initialize automake.
-AM_INIT_AUTOMAKE([-Wall -Werror silent-rules foreign])
-
-# Allow less verbose output when building.
-AM_SILENT_RULES
+AM_INIT_AUTOMAKE([-Wall -Werror foreign])
 
 # Initialize libtool (LT_OUTPUT builds ./libtool immediately, needed
 # so we can do tests with libtool during configuration).