diff options
| author | Lex Neva <lexelby@users.noreply.github.com> | 2020-03-18 14:50:29 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-18 14:50:29 -0400 |
| commit | 79542c0d1309521a96db9c9d249e2bfd824387da (patch) | |
| tree | 2a0c241fd1d41d4d30f5c0a59dd1b9d407c701ed /bin | |
| parent | 6a62e0d82b68d8ddbbb9f949296ae8e9d8b90c24 (diff) | |
| parent | 07bb0dab98da3e06cb6bace27949dd291b0dd979 (diff) | |
Merge pull request #629 from inkstitch/lexelby/no-stub
remove stub
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/build-python | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/bin/build-python b/bin/build-python index 69058593..6c4ad9ce 100755 --- a/bin/build-python +++ b/bin/build-python @@ -24,7 +24,7 @@ pyinstaller_args+="--hidden-import wx " # We need to use the precompiled bootloader linked with graphical Mac OS X # libraries if we develop a GUI application for Mac: -if [ "$BUILD" = "osx" ]; then +if [ "$BUILD" = "osx" -o "$BUILD" = "windows" ]; then pyinstaller_args+="--windowed " fi @@ -55,7 +55,3 @@ mv dist/bin dist/inkstitch if [ "$BUILD" = "osx" ]; then rm -rf dist/inkstitch.app/ fi - -# Inkscape doesn't let us run native binaries as extensions(?!). Instead we -# add this stub script which executes the binary that pyinstaller creates. -cp stub.py dist/inkstitch.py |
