shithub: opusfile

Download patch

ref: ac0af36f65201eaf5145101100ea6baeb3609f77
parent: 009e82533442d8d63632ac867c91da9e846725d5
author: Ron <ron@debian.org>
date: Sun Nov 11 21:00:10 EST 2012

Support --disable-maintainer-mode

Adding AM_MAINTAINER_MODE([enable]) preserves the current behaviour of
rebuilding the autotools support by default if anything changed to make
it out of date -- which is desirable for people building from git to
avoid "Why is the build broken? Oh I forgot to rerun autogen.sh", which
is an all too frequent FAQ.

But it also allows it to be disabled, which is mostly useful for things
like distro package builds where the files should be preserved in their
original form, and configure shouldn't be run twice on the first build
if the timestamps were not strictly preserved for these files.

Signed-off-by: Ralph Giles <giles@mozilla.com>

--- a/configure.ac
+++ b/configure.ac
@@ -6,6 +6,7 @@
 AC_SYS_LARGEFILE
 
 AM_INIT_AUTOMAKE([1.11 foreign])
+AM_MAINTAINER_MODE([enable])
 LT_INIT
 
 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])