]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
Fix typos in variable names.
authorBenoit Sigoure <tsuna@lrde.epita.fr>
Mon, 12 Nov 2007 08:46:16 +0000 (09:46 +0100)
committerBenoit Sigoure <tsuna@lrde.epita.fr>
Mon, 12 Nov 2007 08:46:16 +0000 (09:46 +0100)
* tests/semantics.at (test for AC_CHECK_LIB): s/at_m/ac_m/.

Signed-off-by: Benoit Sigoure <tsuna@lrde.epita.fr>
ChangeLog
tests/semantics.at

index d8c5b9404c18f99134f054776e9ad9e627efa736..459bb6c77924a220ad1a4eab877afee2c39ca0e7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-11-12  Benoit Sigoure  <tsuna@lrde.epita.fr>
+
+       Fix typos in variable names.
+       * tests/semantics.at (test for AC_CHECK_LIB): s/at_m/ac_m/.
+
 2007-11-11  Benoit Sigoure  <tsuna@lrde.epita.fr>
 
        Document that $((expression)) is not portable.
index 685536500efdad269e54df3ef4096dc64308c109..f2c59f3af6b0ef625140028e99d9789d243f946a 100644 (file)
@@ -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')])])
 
 ])