diff options
| author | Lex Neva <github.com@lexneva.name> | 2018-05-02 20:44:57 -0400 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2018-05-02 20:44:57 -0400 |
| commit | 5b376d80fcc153c3c2ddf835eb3bd5a55ab5a816 (patch) | |
| tree | 6cd9db8e2ccc083634969817e866995aedeeb2d3 | |
| parent | 4c31eb74b7bb4cb0e5b2e3e5f466f17d6bff0e39 (diff) | |
strip debug symbols on Linux
| -rwxr-xr-x | bin/build-dist | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/build-dist b/bin/build-dist index ae4c12d6..4d73313a 100755 --- a/bin/build-dist +++ b/bin/build-dist @@ -39,7 +39,7 @@ if [ "$BUILD" = "windows" ]; then else # without the LD_LIBRARY_PATH, it seems that pyinstaller can't find all of # wxpython's shared libraries - LD_LIBRARY_PATH="${site_packages}/wx" pyinstaller $pyinstaller_args inkstitch.py; + LD_LIBRARY_PATH="${site_packages}/wx" pyinstaller $pyinstaller_args --strip inkstitch.py; fi # pyinstaller put a whole mess of libraries under dist/inkstitch. We'd like |
