From f44d3dc9f9862aefb9298f98110559e898441a8f Mon Sep 17 00:00:00 2001 From: Gonzalo Exequiel Pedone Date: Tue, 3 Aug 2021 19:58:05 -0300 Subject: [PATCH] Improved CI build scripts 10. --- ports/ci/windows-msys/deploy.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ports/ci/windows-msys/deploy.sh b/ports/ci/windows-msys/deploy.sh index 75030bc..d9c5132 100644 --- a/ports/ci/windows-msys/deploy.sh +++ b/ports/ci/windows-msys/deploy.sh @@ -32,6 +32,12 @@ export PYTHONPATH="${PWD}/DeployTools" /c/msys64/mingw32/bin/strip "${INSTALL_PREFIX}"/x86/* /c/msys64/mingw64/bin/strip "${INSTALL_PREFIX}"/x64/* + +cat << EOF > package_info_fix_srcdir.conf +[Package] +sourcesDir = ${PWD} +EOF + # mkdir -p "${PACKAGES_DIR}" # python3 DeployTools/deploy.py \ @@ -41,4 +47,5 @@ export PYTHONPATH="${PWD}/DeployTools" python3 DeployTools/deploy.py \ -d "${INSTALL_PREFIX}" \ -c "${BUILD_PATH}/package_info.conf" \ + -c "${PWD}/package_info_fix_srcdir.conf" \ -o "${PACKAGES_DIR}"