]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* tests/base.at (AC_TRY_*): Escape `^' - it's a pipe command
authorPavel Roskin <proski@gnu.org>
Tue, 6 Mar 2001 16:47:38 +0000 (16:47 +0000)
committerPavel Roskin <proski@gnu.org>
Tue, 6 Mar 2001 16:47:38 +0000 (16:47 +0000)
separator on Tru64 v5.1.
Reported by Nicolas Joly.

ChangeLog
tests/base.at

index 34accddd66be6060d31919c288c94eae49c3fc61..dd98c8e4d2a9b6a9a492e01ac8774e1177560f93 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2001-03-06  Pavel Roskin  <proski@gnu.org>
+
+       * tests/base.at (AC_TRY_*): Escape `^' - it's a pipe command
+       separator on Tru64 v5.1.
+       Reported by Nicolas Joly.
+
 2001-03-05  Akim Demaille  <akim@epita.fr>
 
        * tests/atgeneral.m4 (AT_INIT): Register at-setup-line and
index a36f6c65d0844624427d68152d4346301129a423..dae93aecf58679e02caa0f02da87fa54438147fc 100644 (file)
@@ -228,7 +228,7 @@ AT_DATA([configure.ac],
 
 if AC_TRY_COMMAND([(echo "The Cat in the Hat";
                     echo "The Hat in the Cat" >&2)
-                  | grep ^The\ Cat\ in\ the\ Hat\$ >/dev/null]); then
+                  | grep \^The\ Cat\ in\ the\ Hat\$ >/dev/null]); then
   :
 else
   AC_MSG_ERROR([Didn't see the Cat in the Hat!])
@@ -236,7 +236,7 @@ fi
 
 if AC_TRY_COMMAND([(echo "The Cat in the Hat";
                     echo "The Hat in the Cat" >&2)
-                  | grep ^The\ Hat\ in\ the\ Cat\$ >/dev/null]); then
+                  | grep \^The\ Hat\ in\ the\ Cat\$ >/dev/null]); then
   AC_MSG_ERROR([Saw the Hat in the Cat!])
 fi
 ]])