File tree Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ pkgbase="mingw-w64-${_realname}"
55pkgname=($_realname
66 " ${MINGW_PACKAGE_PREFIX} -${_realname} " )
77_ver_base=1.1
8- pkgver=1.1.659.e3eddae38
8+ pkgver=1.1.663.1dcfb5e44
99pkgrel=1
1010pkgdesc=" Git for Windows extra files"
1111arch=(' any' )
@@ -80,7 +80,7 @@ sha256sums=('8ed76d1cb069ac8568f21c431f5e23caebea502d932ab4cdff71396f4f0d5b72'
8080 ' 683ab066be19cb4defec470ebd53f165ca5dbf761fd40c13aee8abe31ba42803'
8181 ' 1cf2c13fb97c51375a76ed479362c3cbcdb51ab4d3a745e8d2c3a780badd8d46'
8282 ' 2ad7292f8ea4aa7d027221bff2a987ad8e7c72a6866a5f14ea67f6187e850244'
83- ' 180e05c1b8afa34d59cb2f6635bc75fece10474f37e164ea5916a6b3b56e20dd '
83+ ' 1f83355ec7be0f11239b68d3b9d4d04534b347212a9eac4335397875a13514ef '
8484 ' 22f41610dea842890955032af30efdb60e80f310e95a04e57ab36b10e0376923'
8585 ' 38c0cf57e03d275cdd42984f102bee8352fac672f875ab23c46b9625eefc49f3'
8686 ' 15b40ab72dea884f659cfbe441e9a40b2d8d63e490a3c14824a55607368e476d'
Original file line number Diff line number Diff line change @@ -360,6 +360,7 @@ sdk () {
360360 git diff-index --quiet HEAD ||
361361 test ! -s .git/index ||
362362 (uname_m=" $( uname -m) " &&
363+ test ! -d " ../build-$uname_m -pc-msys/$uname_m -pc-cygwin/winsup/cygwin" &&
363364 test ! -d " ../build-$uname_m -pc-msys/$uname_m -pc-msys/winsup/cygwin" ); }
364365 then
365366 # no local changes
@@ -370,7 +371,12 @@ sdk () {
370371
371372 # Build the current branch
372373 (uname_m=" $( uname -m) " &&
373- cd " ../build-$uname_m -pc-msys/$uname_m -pc-msys/winsup/cygwin" &&
374+ if test -d " ../build-$uname_m -pc-msys/$uname_m -pc-cygwin/winsup/cygwin"
375+ then
376+ cd " ../build-$uname_m -pc-msys/$uname_m -pc-cygwin/winsup/cygwin"
377+ else
378+ cd " ../build-$uname_m -pc-msys/$uname_m -pc-msys/winsup/cygwin"
379+ fi &&
374380 make -j$( nproc) )
375381 return $?
376382 ;;
Original file line number Diff line number Diff line change @@ -3130,6 +3130,9 @@ create_sdk_artifact () { # [--out=<directory>] [--git-sdk=<directory>] [--archit
31303130 elif git -C " $git_sdk_path " rev-parse --quiet --verify HEAD:usr/i686-pc-msys 2>/dev/null
31313131 then
31323132 architecture=i686
3133+ elif git -C " $git_sdk_path " rev-parse --quiet --verify HEAD:usr/x86_64-pc-cygwin 2>/dev/null
3134+ then
3135+ architecture=x86_64
31333136 elif git -C " $git_sdk_path " rev-parse --quiet --verify HEAD:usr/x86_64-pc-msys 2>/dev/null
31343137 then
31353138 architecture=x86_64
You can’t perform that action at this time.
0 commit comments