Skip to content

Commit

Permalink
makepkg-git: support Windows/ARM64 better
Browse files Browse the repository at this point in the history
As of e292201 (please.sh: change from bitness to architecture in
create_sdk_artifact, 2022-12-28), we want to use the CPU architecture
(or equivalent) instead of the "bitness", but there was one forgotten
instance that still needs to be fixed.

Signed-off-by: Johannes Schindelin <[email protected]>
  • Loading branch information
dscho committed Aug 13, 2024
1 parent 17b7b1c commit dfc4ee5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion please.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3392,7 +3392,7 @@ create_sdk_artifact () { # [--out=<directory>] [--git-sdk=<directory>] [--archit
if test makepkg-git = $mode && test ! -x "$output_path/usr/bin/git"
then
printf '#!/bin/sh\n\nexec %s/bin/git.exe "$@"\n' \
"/mingw$bitness" >"$output_path/usr/bin/git"
"$PREFIX" >"$output_path/usr/bin/git"
fi &&
if test makepkg-git = $mode && ! grep -q http://docbook.sourceforge.net/release/xsl-ns/current "$output_path/etc/xml/catalog"
then
Expand Down

0 comments on commit dfc4ee5

Please sign in to comment.