bug-autoconf
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: CVS autoconf full testsuite failure under Tru64


From: Akim Demaille
Subject: Re: CVS autoconf full testsuite failure under Tru64
Date: 29 Aug 2001 13:01:21 +0200
User-agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.4 (Artificial Intelligence)

| On Wed, Aug 29, 2001 at 11:13:28AM +0200, Akim Demaille wrote:
| > You must be kidding!!!  Am I understanding they don't support
| > backquotes in non quoted heredocs?
| 
| No, your example works, but ...
| 
| > ~/src/ace % cat <<eof                                            nostromo 
11:12
| > heredoc> `echo hello world`
| > heredoc> `grep Nicolas ChangeLog`
| > heredoc> eof
| > hello world
| >         Reported by Nicolas Joly.
| >         Reported by Nicolas Joly.
| >         From Nicolas Joly.
| >         Reported by Nicolas Joly.
| >         Reported by Nicolas Joly.
| > 2001-06-18  Nicolas Joly  <address@hidden>
| 
| address@hidden [temp/autoconf]> /bin/sh
| $ echo `cat<<eof
| > FOOBAR
| > eof`
| /tmp/sh936101: cannot open
| 
| $ echo `cat<<\eof
| > FOOBAR
| > eof`
| FOOBAR

OK, this explains the first failure, but not the second.  The culprit
is:

cat >&5 <<_CSEOF

`sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
## Running \$as_me. ##
_ASBOX`

This file was extended by GNU Autoconf $as_me 2.52c, which was
generated by GNU Autoconf 2.52c.  Invocation command line was

  CONFIG_FILES    = $CONFIG_FILES
  CONFIG_HEADERS  = $CONFIG_HEADERS
  CONFIG_LINKS    = $CONFIG_LINKS
  CONFIG_COMMANDS = $CONFIG_COMMANDS
  $ $@
on `(hostname || uname -n) 2>/dev/null | sed 1q`

_CSEOF

You did spot the first error message, but not the second:

+ sed h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x 
./config.status: /tmp/sh1286373: cannot open
+ sed 1q 
./config.status: /tmp/sh1286373: cannot open

can it be a consequence of the first one?

cat <<EOF
`cat<<eof
FOOBAR
eof
`
`echo toto`
EOF

and

cat <<EOF
`echo toto`
`cat<<eof
FOOBAR
eof
`
EOF

Thanks!



reply via email to

[Prev in Thread] Current Thread [Next in Thread]