diff options
author | Jim Meyering <meyering@redhat.com> | 2009-03-31 20:43:35 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2009-03-31 20:57:11 +0200 |
commit | 1417251e296226e34d25d8ca8c2b99d12c2c21f0 (patch) | |
tree | 6f981afc57b735f949f4d0b6d48c0bc42abb713a /bootstrap | |
parent | 30071248c9e1132b4d5d9559f97b6199cc91556e (diff) | |
download | coreutils-1417251e296226e34d25d8ca8c2b99d12c2c21f0.tar.xz |
build: set automake's silent-rules option via configure.ac
* bootstrap: Revert commit 9f39fa855, 2009-03-28,
"build: use automake's --silent-rules option when possible".
* configure.ac (AM_INIT_AUTOMAKE): Instead, set it here.
Require the just-released version of automake: 1.10b.
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 8 |
1 files changed, 1 insertions, 7 deletions
@@ -686,12 +686,6 @@ find "$m4_base" "$source_base" \ -depth \( -name '*.m4' -o -name '*.[ch]' \) \ -type l -xtype l -delete > /dev/null 2>&1 -# Use automake's --silent-rules option, if possible. -automake="${AUTOMAKE-automake} --add-missing --copy --force-missing" -(${AUTOMAKE-automake} --help) 2>&1 \ - | grep -e '^ *--silent-rules' > /dev/null \ - && automake="$automake --silent-rules" - # Reconfigure, getting other files. for command in \ @@ -699,7 +693,7 @@ for command in \ "${ACLOCAL-aclocal} --force -I m4" \ "${AUTOCONF-autoconf} --force" \ "${AUTOHEADER-autoheader} --force" \ - "$automake" + "${AUTOMAKE-automake} --add-missing --copy --force-missing" do if test "$command" = libtool; then use_libtool=0 |