diff options
author | Max Horn <max@quendi.de> | 2012-12-12 21:33:52 +0100 |
---|---|---|
committer | Erik de Castro Lopo <erikd@mega-nerd.com> | 2012-12-13 08:12:14 +1100 |
commit | 66c0a581d2ee22e65aaf70d50b17cfefc6287f24 (patch) | |
tree | 6b723d7234a732e5710b98d3af5b82336d2b23b4 /configure.ac | |
parent | f20164e41ed040c56cc71b47c8b35da7f474dc57 (diff) | |
download | flac-66c0a581d2ee22e65aaf70d50b17cfefc6287f24.tar.gz |
autogen.sh: replace this by a simple call to autoreconf
The autoreconf tool is provided by autoconf to do what custom
autogen.sh scripts in many projects used to do. Only it is more
robust and widely tested. It has been available for several years,
too. No reason to rely on custom code for this.
Signed-off-by: Max Horn <max@quendi.de>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index f206b32f..1c936b3f 100644 --- a/configure.ac +++ b/configure.ac @@ -22,7 +22,7 @@ AC_PREREQ(2.60) AC_INIT([flac], [1.2.1]) AC_CONFIG_SRCDIR([src/flac/main.c]) AC_CONFIG_MACRO_DIR([m4]) -AM_INIT_AUTOMAKE([foreign -Wall tar-pax no-dist-gzip dist-xz subdir-objects]) +AM_INIT_AUTOMAKE([foreign 1.7 -Wall tar-pax no-dist-gzip dist-xz subdir-objects]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) user_cflags=$CFLAGS |