From d8fdaaec55b845e6e3bfcee9439d4a462c0ab9a6 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Tue, 10 Sep 2024 08:04:32 +0800 Subject: [PATCH] Strip xattrs from macOS bundle before archiving. --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index f7f1bc2..9aa0e7b 100644 --- a/Makefile +++ b/Makefile @@ -574,6 +574,8 @@ dist/Python-$(PYTHON_VER)-macOS-support.$(BUILD_NUMBER).tar.gz: \ @echo ">>> Create final distribution artefact for macOS" mkdir -p dist + # Strip xattrs from the support files + xattr -cr support/$(PYTHON_VER)/macOS # Build a distributable tarball tar zcvf $$@ -C support/$(PYTHON_VER)/macOS `ls -A support/$(PYTHON_VER)/macOS/`