summaryrefslogtreecommitdiffstats
path: root/makeself/makeself.sh
diff options
context:
space:
mode:
Diffstat (limited to 'makeself/makeself.sh')
-rwxr-xr-xmakeself/makeself.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/makeself/makeself.sh b/makeself/makeself.sh
index 709473aab..2ce37a24f 100755
--- a/makeself/makeself.sh
+++ b/makeself/makeself.sh
@@ -470,8 +470,8 @@ gpg-asymmetric)
GUNZIP_CMD="gpg --yes -d"
;;
openssl)
- GZIP_CMD="openssl aes-256-cbc -a -salt"
- GUNZIP_CMD="openssl aes-256-cbc -d -a"
+ GZIP_CMD="openssl aes-256-cbc -a -salt -md sha256"
+ GUNZIP_CMD="openssl aes-256-cbc -d -a -md sha256"
;;
Unix)
GZIP_CMD="compress -cf"
@@ -529,7 +529,8 @@ if test "$QUIET" = "n";then
echo Adding files to archive named \"$archname\"...
fi
exec 3<> "$tmpfile"
-(cd "$archdir" && ( tar "$TAR_EXTRA" -$TAR_ARGS - . | eval "$GZIP_CMD" >&3 ) ) || { echo Aborting: Archive directory not found or temporary file: "$tmpfile" could not be created.; exec 3>&-; rm -f "$tmpfile"; exit 1; }
+( cd "$archdir" && ( tar $TAR_EXTRA -$TAR_ARGS - . | eval "$GZIP_CMD" >&3 ) ) || \
+ { echo Aborting: archive directory not found or temporary file: "$tmpfile" could not be created.; exec 3>&-; rm -f "$tmpfile"; exit 1; }
exec 3>&- # try to close the archive
fsize=`cat "$tmpfile" | wc -c | tr -d " "`
@@ -617,4 +618,3 @@ else
fi
fi
rm -f "$tmpfile"
-