From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from integral2.. (unknown [36.68.63.145]) by gnuweeb.org (Postfix) with ESMTPSA id 587587E258; Mon, 14 Feb 2022 06:06:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1644818801; bh=7505uLhue52jgfChnhR5ox0b+mAm1BPovnUsJvssCCA=; h=From:To:Cc:Subject:Date:From; b=KVNNeenQGjgEi6QRykLXtpNyFRKYzhsSdmlA+n1fzm5b9buIOKUOtvcAE0c37jT/e Hk5r1btONBywqLyog+T3cjtJdQmer70tam0yrllR8CpQdlXWAgrKGCX/QVZYIN6jqn VhvAng5+ghVD3FSIa7mvjp5bW3NNLCyB9dnNbG4oth7KxL+cjpEVnj8RlMCmGghgtL yaLp3M5NMNDdScEHCfovRQ2qcvR+yyVn+lwcSS2WRrv13IFjZf1fsjHY0inTN2aJBy Ty0JWcAo9Nt8Z2SOhrltXltyol7V9G2OHLpzoMyo20HBRjOaEKMLtz3tuyZ3LbcFmq TLDVI6r7OY5kg== From: Ammar Faizi To: Tea Inside Mailing List Cc: GNU/Weeb Mailing List , Ammar Faizi , Ammar Faizi , Nugra Subject: [PATCH teavpn2] configure: Touch the temporary files after `mktemp -d` Date: Mon, 14 Feb 2022 13:06:05 +0700 Message-Id: <20220214060605.525957-1-ammarfaizi2@gnuweeb.org> X-Mailer: git-send-email 2.32.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Commit e9a3cae5d9e9d4 ("configure: Support busybox mktemp") didn't add `touch` command after creating the temporary directory. Let's touch the temporary files after creating the temporary directory. Fixes: e9a3cae5d9e9d4b6539eff376765bad1ca24064f ("configure: Support busybox mktemp") Cc: Nugra Signed-off-by: Ammar Faizi --- configure | 1 + 1 file changed, 1 insertion(+) diff --git a/configure b/configure index b7a0378..663f2c6 100755 --- a/configure +++ b/configure @@ -124,6 +124,7 @@ TMPC2="$TMP_DIRECTORY/tmpfile-2.c" TMPO="$TMP_DIRECTORY/tmpfile.o" TMPE="$TMP_DIRECTORY/tmpfile.exe" +touch $TMPC $TMPC2 $TMPO $TMPE # NB: do not call "exit" in the trap handler; this is buggy with some shells; # see <1285349658-3122-1-git-send-email-loic.minier@linaro.org> trap "rm -rf $TMP_DIRECTORY" EXIT INT QUIT TERM base-commit: 2cdd164dae82d12fe602c227b22b4c0090939928 -- Ammar Faizi