summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xMaster/tlpkg/bin/tl-check-tlnet-consistency2
-rwxr-xr-xMaster/tlpkg/bin/tl-makeself-from-tlnet2
2 files changed, 2 insertions, 2 deletions
diff --git a/Master/tlpkg/bin/tl-check-tlnet-consistency b/Master/tlpkg/bin/tl-check-tlnet-consistency
index e82ec38a0b1..7016d9397f1 100755
--- a/Master/tlpkg/bin/tl-check-tlnet-consistency
+++ b/Master/tlpkg/bin/tl-check-tlnet-consistency
@@ -68,7 +68,7 @@ sub main {
if (! -d $tempbase) {
mkdir($tempbase) or die "Cannot create $tempbase directory: $!";
}
- my $temp = `mktemp -d -p \"$tempbase\"`;
+ my $temp = `mktemp -d --suffix=tlcnc --tmpdir=\"$tempbase\"`;
chomp($temp);
die "Cannot create temporary directory in $tempbase: $!" if (! -d $temp);
my @notlpobj;
diff --git a/Master/tlpkg/bin/tl-makeself-from-tlnet b/Master/tlpkg/bin/tl-makeself-from-tlnet
index 694bd3ee9b3..50bdc4e6b9a 100755
--- a/Master/tlpkg/bin/tl-makeself-from-tlnet
+++ b/Master/tlpkg/bin/tl-makeself-from-tlnet
@@ -51,7 +51,7 @@ if test -z "$NETRELEASE" || test -z "$MINRELEASE"; then
fi
CWD=`pwd` # save original dir
-TMP=`mktemp -d` # work in new temp dir
+TMP=`mktemp --suffix=tlmksel -d` # work in new temp dir
cd "$TMP"
mkdir master
cd master