From: Akim Demaille Date: Mon, 19 Mar 2001 14:31:00 +0000 (+0000) Subject: * tests/atgeneral.m4 (AT_INIT): Fix the at_diff test. X-Git-Tag: autoconf-2.50~88 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=608985663df5fe60edcab078f033a049f0c9622c;p=thirdparty%2Fautoconf.git * tests/atgeneral.m4 (AT_INIT): Fix the at_diff test. Reported by Nicolas Joly. --- diff --git a/ChangeLog b/ChangeLog index 02d184412..171b7e2d1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-03-19 Akim Demaille + + * tests/atgeneral.m4 (AT_INIT): Fix the at_diff test. + Reported by Nicolas Joly. + 2001-03-19 Akim Demaille * acgeneral.m4 (_AC_PREPROC_IFELSE): Redirect stdout out of the diff --git a/lib/autotest/general.m4 b/lib/autotest/general.m4 index 6dcf9a8d8..8d458998b 100644 --- a/lib/autotest/general.m4 +++ b/lib/autotest/general.m4 @@ -196,7 +196,7 @@ else fi # Use `diff -u' when possible. -if diff $at_devnull $at_devnull >/dev/null 2>&1; then +if diff -u $at_devnull $at_devnull >/dev/null 2>&1; then at_diff='diff -u' else at_diff=diff diff --git a/tests/atgeneral.m4 b/tests/atgeneral.m4 index 6dcf9a8d8..8d458998b 100644 --- a/tests/atgeneral.m4 +++ b/tests/atgeneral.m4 @@ -196,7 +196,7 @@ else fi # Use `diff -u' when possible. -if diff $at_devnull $at_devnull >/dev/null 2>&1; then +if diff -u $at_devnull $at_devnull >/dev/null 2>&1; then at_diff='diff -u' else at_diff=diff