From 8260a1abb7843001e93569e8d0e113dc0e375838 Mon Sep 17 00:00:00 2001 From: SomberNight Date: Fri, 25 Mar 2022 17:08:55 +0100 Subject: [PATCH] win build: set `--no-build-isolation` when pip installing pyinstaller fixes https://github.com/spesmilo/electrum/issues/7736 --- contrib/build-wine/prepare-wine.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/build-wine/prepare-wine.sh b/contrib/build-wine/prepare-wine.sh index 4dd644c44..1b55d7181 100755 --- a/contrib/build-wine/prepare-wine.sh +++ b/contrib/build-wine/prepare-wine.sh @@ -105,6 +105,6 @@ info "Building PyInstaller." [[ -e "PyInstaller/bootloader/Windows-$PYINST_ARCH/runw.exe" ]] || fail "Could not find runw.exe in target dir!" ) || fail "PyInstaller build failed" info "Installing PyInstaller." -$WINE_PYTHON -m pip install --no-dependencies --no-warn-script-location ./pyinstaller +$WINE_PYTHON -m pip install --no-dependencies --no-build-isolation --no-warn-script-location ./pyinstaller info "Wine is configured."