From: Benoit Sigoure Date: Mon, 12 Nov 2007 08:46:16 +0000 (+0100) Subject: Fix typos in variable names. X-Git-Tag: v2.62~150 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=db607230cde0f3b72db3c7feec1d65b52d0d46fd;p=thirdparty%2Fautoconf.git Fix typos in variable names. * tests/semantics.at (test for AC_CHECK_LIB): s/at_m/ac_m/. Signed-off-by: Benoit Sigoure --- diff --git a/ChangeLog b/ChangeLog index d8c5b940..459bb6c7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-11-12 Benoit Sigoure + + Fix typos in variable names. + * tests/semantics.at (test for AC_CHECK_LIB): s/at_m/ac_m/. + 2007-11-11 Benoit Sigoure Document that $((expression)) is not portable. diff --git a/tests/semantics.at b/tests/semantics.at index 68553650..f2c59f3a 100644 --- a/tests/semantics.at +++ b/tests/semantics.at @@ -48,7 +48,7 @@ AC_CHECK_LIB($ac_m, acos,, ac_asin=asin AC_CHECK_LIB($ac_m, $ac_asin,, - [AC_MSG_ERROR([cannot find `\$ac_asin' (= `$ac_asin') in `\$ac_m' (= `$at_m')])]) + [AC_MSG_ERROR([cannot find `\$ac_asin' (= `$ac_asin') in `\$ac_m' (= `$ac_m')])]) # But if the bug is in the caching mechanism, then be sure we # correctly detect failures. @@ -67,7 +67,7 @@ AC_CHECK_LIB($ac_m, acossack, ac_asinner=asinner AC_CHECK_LIB($ac_m, $ac_asinner, - [AC_MSG_ERROR([found `\$ac_asinner' (= `$ac_asinner') in `\$ac_m' (= `$at_m')])]) + [AC_MSG_ERROR([found `\$ac_asinner' (= `$ac_asinner') in `\$ac_m' (= `$ac_m')])]) ])