Skip to content

Commit d394990

Browse files
committed
installer/portable/mingit: include the OpenSSL v1.0.2p DLLs
As pointed out in the previous commits: after upgrading to OpenSSL v1.1.1a, a ton of .exe files won't work because they link to the OpenSSL v1.0.2p DLLs (which have a different name than the v1.1.1a DLLs). Until we are certain that we do not have any .exe/.dll files in any of the packages we use to generate Git for Windows installers, let's just include both v1.0.2p and v1.1.1a DLLs. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 0f36531 commit d394990

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

make-file-list.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,12 @@ then
4949
UTIL_PACKAGES="$UTIL_PACKAGES tmux libevent"
5050
fi
5151

52+
this_script_dir="$(cd "$(dirname "$0")")" ||
53+
die "Could not determine this script's dir"
54+
5255
pacman_list () {
56+
cat "$this_script_dir/keep-despite-upgrade.txt" 2>/dev/null
57+
5358
package_list=$(for arg
5459
do
5560
pactree -u "$arg"

0 commit comments

Comments
 (0)