autoconf-patches
[Top][All Lists]
Advanced

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

Re: Workaround for ash braindamage


From: Raja R Harinath
Subject: Re: Workaround for ash braindamage
Date: 20 Sep 2000 14:36:57 -0500
User-agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/20.7

Pavel Roskin <address@hidden> writes:
> ================================
> 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

Shouldn't that be

  (umask 077 && mkdir $tmp)

i.e., we don't want to change the umask of the currently running
shell.

- Hari
-- 
Raja R Harinath ------------------------------ address@hidden
"When all else fails, read the instructions."      -- Cahn's Axiom
"Our policy is, when in doubt, do the right thing."   -- Roy L Ash


reply via email to

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