Re: Fix `set -o posix' again

2006-01-21 Thread Paul Eggert
Ralf Wildenhues <[EMAIL PROTECTED]> writes: >> > | elif (set -o posix) >/dev/null 2>&1; then >> > | set -o posix >> > | fi >> >> Why does this hang under AIX? Can you truss it, or strace it, or whatever? > > D'oh. It waits for stdin and finishes when given an EOF. Does it work if you redirec

Fix `set -o posix' again (was: 1.5.22 fails to configure on AIX 5.1)

2006-01-21 Thread Ralf Wildenhues
Sorry for the delay. Eliding libtool list. * Paul Eggert wrote on Sun, Jan 15, 2006 at 01:57:29PM CET: > Ralf Wildenhues <[EMAIL PROTECTED]> writes: > > > | elif (set -o posix) >/dev/null 2>&1; then > > | set -o posix > > | fi > > Why does this hang under AIX? Can you truss it, or strace it,

Re: How can I get rid of dinkleberry autotools temp dirs?

2006-01-21 Thread Bruce Korb
Ralf Wildenhues wrote: OK, thanks. I have applied the following patch to fix these issues, assuming silent agreement to the other part of my proposed change. ;-) Looks good to me! Thank you. Completely off-topic: Now, I have a curiosity question. Why this (unchanged) construct: test

Re: How can I get rid of dinkleberry autotools temp dirs?

2006-01-21 Thread Ralf Wildenhues
Sorry for the delay. * Stepan Kasal wrote on Wed, Jan 11, 2006 at 08:29:15PM CET: > > > > f=`mktemp -d -q x` > > actually, the example code in autoconf.texi doesn't contain -q, > while te actual code (m4sh.m4, General.pm, and config.guess) has it. > > In any case, we should synch these.