From 049147c6456b6837d1391d2bc042c76524387868 Mon Sep 17 00:00:00 2001 From: arvidn Date: Sat, 25 Jan 2025 10:17:45 +0100 Subject: [PATCH] install perl-IPC-Cmd, to build OpenSSL --- pyproject.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 0f4af51b6a..3488db4db1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,8 +24,9 @@ PATH = "/tmp/boost:$PATH" before-all = [ "./tools/cibuildwheel/setup_boost.sh $BOOST_VERSION $BOOST_ROOT", "./tools/cibuildwheel/setup_ccache_on_manylinux.sh", - "./tools/cibuildwheel/setup_openssl.sh", - "yum install -y glibc-static" # needed for libutil.a and libdl.a + "yum install -y glibc-static", # needed for libutil.a and libdl.a + # perl-IPC-Cmd is needed to build OpenSSL + "yum install -y perl-IPC-Cmd && ./tools/cibuildwheel/setup_openssl.sh" ] before-test = "ccache -s" select = "*-manylinux_*"