diff options
Diffstat (limited to '')
-rwxr-xr-x | bin/1sh/mkbuiltins | 2 | ||||
-rw-r--r-- | bin/1sh/mktokens | 2 |
2 files changed, 2 insertions, 2 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 diff --git a/bin/1sh/mktokens b/bin/1sh/mktokens index 39163663..f0d80cc5 100644 --- a/bin/1sh/mktokens +++ b/bin/1sh/mktokens @@ -38,7 +38,7 @@ # token marks the end of a list. The third column is the name to print in # error messages. -temp=`mktemp -t ka` +temp=`mktemp` cat > $temp <<\! TEOF 1 end of file TNL 0 newline |