summaryrefslogtreecommitdiff
path: root/bin/build-python
diff options
context:
space:
mode:
authorBenson Muite <bkmgit@users.noreply.github.com>2024-11-26 19:32:06 +0300
committerGitHub <noreply@github.com>2024-11-26 17:32:06 +0100
commitdf3e412e9b3defadc1f7d21810a88f270bb479ef (patch)
tree1516e7367c0e307e88f6f6b97acae4dc52b90f2f /bin/build-python
parentfd1c72ea02be4b5204bb41b84123c6db789a8424 (diff)
Add lmde6 32bit build (#3297) (#3298)
Diffstat (limited to 'bin/build-python')
-rwxr-xr-xbin/build-python5
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