separator on Tru64 v5.1.
Reported by Nicolas Joly.
+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
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!])
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
]])