diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2012-03-08 17:33:20 -0500 |
---|---|---|
committer | Chase Douglas <chase.douglas@canonical.com> | 2012-03-09 07:10:59 -0800 |
commit | ea7303900e3689d5b258bd5d61593f8b1ae3b4b0 (patch) | |
tree | 95e98fb8a38ed7a40417047343c9cdacb80d5ea5 | |
parent | caec23aa80e92ad760dbcd4f285e62cbea6a99c3 (diff) |
config: support Automake 1.10
X.Org has a requirement to support 1.10 or later.
The silent rules are handled by XORG_DEFAULT_OPTIONS
We do not write the version number, but refer to the wiki:
http://www.x.org/wiki/ModularDevelopersGuide#GNU_Build_System
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
Reviewed-by: Chase Douglas <chase.douglas@canonical.com>
Signed-off-by: Chase Douglas <chase.douglas@canonical.com>
-rw-r--r-- | configure.ac | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 5fa9161..bd8e2c0 100644 --- a/configure.ac +++ b/configure.ac @@ -8,8 +8,7 @@ AC_CONFIG_SRCDIR([Makefile.am]) AC_CONFIG_MACRO_DIR([m4]) # Initialize Automake -AM_INIT_AUTOMAKE([1.11 foreign dist-bzip2]) -AM_SILENT_RULES([yes]) +AM_INIT_AUTOMAKE([foreign dist-bzip2]) AM_MAINTAINER_MODE([enable]) LIB_VERSION=0:0:0 |