diff options
author | June McEnroe <june@causal.agency> | 2020-06-07 15:14:07 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-06-07 15:14:07 -0400 |
commit | 25a8491d463a4bfd31edd89f9ce3fd118b451b22 (patch) | |
tree | 0f94cb6390b9f03b8a92f190e2a627ea2af81689 /bin/1sh/mkbuiltins | |
parent | Cast z_stream fields to size_t (diff) | |
download | src-25a8491d463a4bfd31edd89f9ce3fd118b451b22.tar.gz src-25a8491d463a4bfd31edd89f9ce3fd118b451b22.zip |
Remove mktemp options from mkbuiltins, mktokens
Why even?
Diffstat (limited to 'bin/1sh/mkbuiltins')
-rwxr-xr-x | bin/1sh/mkbuiltins | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/1sh/mkbuiltins b/bin/1sh/mkbuiltins index 4032b2d2..cbcf0ec1 100755 --- a/bin/1sh/mkbuiltins +++ b/bin/1sh/mkbuiltins @@ -34,7 +34,7 @@ # @(#)mkbuiltins 8.2 (Berkeley) 5/4/95 # $FreeBSD: releng/12.1/bin/sh/mkbuiltins 328934 2018-02-06 15:41:35Z arichardson $ -temp=`mktemp -t ka` +temp=`mktemp` havehist=1 if [ "X$1" = "X-h" ]; then havehist=0 |