mirror of
git://git.sv.gnu.org/autoconf
synced 2025-03-07 14:26:52 +08:00
* 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:
parent
f9c9bd2420
commit
3406445abc
@ -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>
|
2001-03-05 Akim Demaille <akim@epita.fr>
|
||||||
|
|
||||||
* tests/atgeneral.m4 (AT_INIT): Register at-setup-line and
|
* tests/atgeneral.m4 (AT_INIT): Register at-setup-line and
|
||||||
|
@ -228,7 +228,7 @@ AT_DATA([configure.ac],
|
|||||||
|
|
||||||
if AC_TRY_COMMAND([(echo "The Cat in the Hat";
|
if AC_TRY_COMMAND([(echo "The Cat in the Hat";
|
||||||
echo "The Hat in the Cat" >&2)
|
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
|
else
|
||||||
AC_MSG_ERROR([Didn't see the Cat in the Hat!])
|
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";
|
if AC_TRY_COMMAND([(echo "The Cat in the Hat";
|
||||||
echo "The Hat in the Cat" >&2)
|
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!])
|
AC_MSG_ERROR([Saw the Hat in the Cat!])
|
||||||
fi
|
fi
|
||||||
]])
|
]])
|
||||||
|
Loading…
Reference in New Issue
Block a user