[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Workaround for ash braindamage
From: |
Pavel Roskin |
Subject: |
Re: Workaround for ash braindamage |
Date: |
Wed, 20 Sep 2000 15:41:03 -0400 (EDT) |
Hello, Raja!
> Shouldn't that be
>
> (umask 077 && mkdir $tmp)
You are absolutely right. Thank you!
The fixed patch is attached.
Regards,
Pavel Roskin
=========================
Index: acgeneral.m4
--- acgeneral.m4 Wed Sep 20 12:31:57 2000
+++ acgeneral.m4 Wed Sep 20 15:02:10 2000
@@ -789,7 +789,8 @@
test -n "$tmp" && test -d "$tmp"
} ||
{
- tmp=$TMPDIR/$1$$-$RANDOM && (umask 077 && mkdir $tmp)
+ tmp=$TMPDIR/$1$$-$RANDOM
+ (umask 077 && mkdir $tmp)
} ||
{
echo "$me: cannot create a temporary directory in $TMPDIR" >&2
=========================