From: Erik de Castro Lopo Date: Thu, 2 Feb 2012 18:52:01 +0000 (+1100) Subject: configure.ac : Only use AM_SILENT_RULES if its available. Thanks Earl Chew. X-Git-Tag: 1.3.0pre1~129 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=886b960211122cc1c16099883992386fbaa8bd27;p=platform%2Fupstream%2Fflac.git configure.ac : Only use AM_SILENT_RULES if its available. Thanks Earl Chew. --- diff --git a/configure.ac b/configure.ac index 6a65fcc..36ac6c6 100644 --- a/configure.ac +++ b/configure.ac @@ -20,7 +20,7 @@ AC_INIT(src/flac/main.c) AM_INIT_AUTOMAKE(flac, 1.2.1) -AM_SILENT_RULES([yes]) +m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) # Don't automagically regenerate autoconf/automake generated files unless # explicitly requested. Eases autobuilding -mdz