diff options
| author | Benson Muite <bkmgit@users.noreply.github.com> | 2024-11-26 19:32:06 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-26 17:32:06 +0100 |
| commit | df3e412e9b3defadc1f7d21810a88f270bb479ef (patch) | |
| tree | 1516e7367c0e307e88f6f6b97acae4dc52b90f2f /bin/build-python | |
| parent | fd1c72ea02be4b5204bb41b84123c6db789a8424 (diff) | |
Add lmde6 32bit build (#3297) (#3298)
Diffstat (limited to 'bin/build-python')
| -rwxr-xr-x | bin/build-python | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bin/build-python b/bin/build-python index 4df27e2d..52226630 100755 --- a/bin/build-python +++ b/bin/build-python @@ -31,6 +31,11 @@ if [ "$BUILD" = "linux" ]; then pyinstaller_args+="--add-binary /lib/x86_64-linux-gnu/libnsl.so.1:. " fi +if [ "$BUILD" = "linux32" ]; then + pyinstaller_args+="--hidden-import gi.repository.Gtk " + pyinstaller_args+="--add-binary /lib/i386-linux-gnu/libcrypt.so.1:. " + pyinstaller_args+="--add-binary /lib/i386-linux-gnu/libnsl.so.1:. " +fi if [ "$BUILD" = "windows" ]; then if [[ "$VERSION" =~ ^v[0-9][.0-9]+$ ]]; then |
