From 3db8ed18f6ecda6ece97682dbcf43587419b4a0a Mon Sep 17 00:00:00 2001 From: falkTX Date: Mon, 15 Mar 2021 00:37:50 +0000 Subject: [PATCH] Another build fix --- .travis.yml | 1 + bootstrap-plugins.sh | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/.travis.yml b/.travis.yml index f86e2f6..0b3c89e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -75,6 +75,7 @@ install: - bash ${TRAVIS_BUILD_DIR}/.travis/install.sh script: + - rm -rf ${HOME}/PawPawBuilds/builds/macos-universal/die-plugins-6c693aab4bbd8bb7b15b2423202248f66f1990fe - bash ${TRAVIS_BUILD_DIR}/bootstrap-plugins.sh ${TARGET} - bash ${TRAVIS_BUILD_DIR}/.cleanup.sh ${TARGET} - bash ${TRAVIS_BUILD_DIR}/.travis/script.sh diff --git a/bootstrap-plugins.sh b/bootstrap-plugins.sh index 50849d5..a54e8ac 100755 --- a/bootstrap-plugins.sh +++ b/bootstrap-plugins.sh @@ -251,3 +251,10 @@ download carla ${CARLA_VERSION} "https://github.com/falkTX/Carla.git" "" "git" build_make carla ${CARLA_VERSION} "${CARLA_EXTRAFLAGS}" # --------------------------------------------------------------------------------------------------------------------- +# wine bootstrap for python (needed for cross-compilation) + +if [ "${WIN32}" -eq 1 ] && [ -n "${EXE_WRAPPER}" ]; then + env WINEARCH="${PAWPAW_TARGET}" WINEDLLOVERRIDES="mscoree,mshtml=" wineboot -u +fi + +# ---------------------------------------------------------------------------------------------------------------------