Skip to content

Commit bb8faa3

Browse files
committed
Merge branch 'dev' into 3.5
2 parents 92d4f3c + 5c50fca commit bb8faa3

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/release.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,12 @@ jobs:
8080
# For a list of SDKs available on Github Actions, see:
8181
# https://github.com/actions/virtual-environments/blob/master/images/macos/macos-10.15-Readme.md
8282
sudo xcode-select --switch /Applications/Xcode_11.3.1.app
83+
84+
# 2020-06-24: The Homebrew copy of gettext leaks into the macOS build
85+
# if it is present. Uninstall gettext to make sure that doesn't happen.
86+
sudo brew uninstall --ignore-dependencies gettext
87+
88+
# Do the build for the requested target.
8389
make -e ${{ matrix.target }}
8490
- name: Upload ${{ matrix.target }} release asset
8591
uses: actions/upload-release-asset@v1

patch/Python/Setup.embedded

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#####################################################################
44

55
_bisect _bisectmodule.c
6-
_bz2 _bz2module.c -I$(srcdir)/../bzip2/include -L$(srcdir)/../Support/BZip2 -lbz2
6+
_bz2 _bz2module.c -I$(srcdir)/../Support/BZip2/Headers -L$(srcdir)/../Support/BZip2 -lbzip2
77
_codecs _codecsmodule.c
88
_codecs_cn cjkcodecs/_codecs_cn.c
99
_codecs_hk cjkcodecs/_codecs_hk.c
@@ -25,7 +25,7 @@ _io -DPy_BUILD_CORE -I$(srcdir)/Modules/_io _io/_iomodule.c _io/iobase.c _io/fil
2525
_json _json.c
2626
_locale _localemodule.c
2727
_lsprof _lsprof.o rotatingtree.c
28-
_lzma _lzmamodule.c -I$(srcdir)/../xz/include -L$(srcdir)/../Support/XZ -llzma
28+
_lzma _lzmamodule.c -I$(srcdir)/../Support/XZ/Headers -L$(srcdir)/../Support/XZ/ -lxz
2929
_md5 md5module.c
3030
_multibytecodec cjkcodecs/multibytecodec.c
3131
_multiprocessing _multiprocessing/multiprocessing.c _multiprocessing/semaphore.c

0 commit comments

Comments
 (0)