From d0b18ab47281eceebe3dcf2d19c91281799b1dfe Mon Sep 17 00:00:00 2001 From: Tamas Nepusz Date: Sun, 1 Sep 2024 18:20:25 +0200 Subject: [PATCH] Ensure that deepfreeze.o is included in the distribution --- cpython-unix/build-cpython.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpython-unix/build-cpython.sh b/cpython-unix/build-cpython.sh index 87225429b..c78eb906c 100755 --- a/cpython-unix/build-cpython.sh +++ b/cpython-unix/build-cpython.sh @@ -830,7 +830,7 @@ ${BUILD_PYTHON} ${ROOT}/fix_shebangs.py ${ROOT}/out/python/install # Also copy object files so they can be linked in a custom manner by # downstream consumers. -OBJECT_DIRS="Objects Parser Parser/pegen Programs Python" +OBJECT_DIRS="Objects Parser Parser/pegen Programs Python Python/deepfreeze" OBJECT_DIRS="${OBJECT_DIRS} Modules" for ext in _blake2 cjkcodecs _ctypes _ctypes/darwin _decimal _expat _hacl _io _multiprocessing _sha3 _sqlite _sre _xxtestfuzz ; do OBJECT_DIRS="${OBJECT_DIRS} Modules/${ext}"