* tests/base.at (AC_TRY_*): Escape `^' - it's a pipe command

separator on Tru64 v5.1.
Reported by Nicolas Joly.
This commit is contained in:
Pavel Roskin 2001-03-06 16:47:38 +00:00
parent f9c9bd2420
commit 3406445abc
2 changed files with 8 additions and 2 deletions

View File

@ -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

View 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
]])