Browse Source
Merge pull request #7400 from SomberNight/202107_mac_build_pyc
mac build: don't create __pycache__ folders
patch-4
ThomasV
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
1 deletions
-
contrib/build-wine/build-electrum-git.sh
-
contrib/osx/make_osx
|
|
@ -2,7 +2,7 @@ |
|
|
|
|
|
|
|
NAME_ROOT=electrum |
|
|
|
|
|
|
|
export PYTHONDONTWRITEBYTECODE=1 |
|
|
|
export PYTHONDONTWRITEBYTECODE=1 # don't create __pycache__/ folders with .pyc files |
|
|
|
|
|
|
|
|
|
|
|
# Let's begin! |
|
|
|
|
|
@ -7,6 +7,7 @@ PACKAGE=Electrum |
|
|
|
GIT_REPO=https://github.com/spesmilo/electrum |
|
|
|
|
|
|
|
export GCC_STRIP_BINARIES="1" |
|
|
|
export PYTHONDONTWRITEBYTECODE=1 # don't create __pycache__/ folders with .pyc files |
|
|
|
|
|
|
|
|
|
|
|
. "$(dirname "$0")/../build_tools_util.sh" |
|
|
|