[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: FYI: Unsuccessful stat on filename containing newline
From: |
Akim Demaille |
Subject: |
Re: FYI: Unsuccessful stat on filename containing newline |
Date: |
26 Feb 2001 16:27:45 +0100 |
User-agent: |
Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Cuyahoga Valley) |
Pavel Roskin <address@hidden> writes:
> # If mktemp supports dirs, use it to please Marc E.
> $tmp = `(umask 077 && mktemp -d -q "$TMPDIR/auXXXXXX") 2>/dev/null`;
> + chomp $tmp;
> For some reason autoupdate is warning me on RedHat 7.0 but not 6.2:
>
> Unsuccessful stat on filename containing newline at
> /home/proski/src/autoconf/autoupdate line 55.
Because mktemp does not support -d on 6.2, but does in 7.0 I guess.
Thanks!