From 0793bb9835b508ecacf344fa4b69d8bb4ca435ef Mon Sep 17 00:00:00 2001 From: "W.C.A. Wijngaards" Date: Fri, 12 Dec 2025 15:44:46 +0100 Subject: [PATCH] - simdzone-zone-load, fix makedist to make a directory in /tmp, so that autoconf does not go up to the directory of the working copy for files. --- makedist.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/makedist.sh b/makedist.sh index c9b4de1dd..c5cc77a48 100755 --- a/makedist.sh +++ b/makedist.sh @@ -142,7 +142,7 @@ check_git_repo () { create_temp_dir () { # Creating temp directory info "Creating temporary working directory" - temp_dir=`mktemp -d unbound-dist-XXXXXX` + temp_dir=`mktemp -t -d unbound-dist-XXXXXX` info "Directory '$temp_dir' created." cd $temp_dir } @@ -709,7 +709,7 @@ info "Renaming Unbound directory to unbound-$version." cd .. mv unbound unbound-$version || error_cleanup "Failed to rename unbound directory." -tarfile="../unbound-$version.tar.gz" +tarfile="$cwd/unbound-$version.tar.gz" if [ -f $tarfile ]; then (question "The file $tarfile already exists. Overwrite?" \ @@ -717,7 +717,7 @@ if [ -f $tarfile ]; then fi info "Creating tar unbound-$version.tar.gz" -tar czf ../unbound-$version.tar.gz unbound-$version || error_cleanup "Failed to create tar file." +tar czf $tarfile unbound-$version || error_cleanup "Failed to create tar file." cleanup