From 22ac4f3ba511b459adb8d5d3f4b1202db24769ed Mon Sep 17 00:00:00 2001 From: Marc Culler Date: Fri, 1 Dec 2023 20:27:10 -0600 Subject: [PATCH] Sign .so and .dylib files in Pillow. --- Sage_framework/build_sage_framework.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Sage_framework/build_sage_framework.sh b/Sage_framework/build_sage_framework.sh index 3d206f1..e92148a 100644 --- a/Sage_framework/build_sage_framework.sh +++ b/Sage_framework/build_sage_framework.sh @@ -146,7 +146,8 @@ PIP_TARGET=${VERSION_DIR}/${VENV_PYLIB}/site-packages PIP_ARGS="install --upgrade --no-user --force --only-binary :all:" echo Re-installing Pillow ${VERSION_DIR}/venv/bin/python3 -m pip ${PIP_ARGS} --target ${PIP_TARGET} Pillow -find ${PIP_TARGET}/PIL -name '*.so' >> files_to_sign +find ${PIP_TARGET}/PIL/ -name '*.dylib' >> files_to_sign +find ${PIP_TARGET}/PIL/ -name '*.so' >> files_to_sign # Fix the absolute symlinks for the GAP packages pushd ${VERSION_DIR}/local/share/gap/pkg > /dev/null