summaryrefslogtreecommitdiff
path: root/bin/build-dist
diff options
context:
space:
mode:
authorLex Neva <github.com@lexneva.name>2018-07-25 21:39:39 -0400
committerLex Neva <github.com@lexneva.name>2018-07-25 21:39:39 -0400
commit6c5e256d73500be4674e8778d80b12c5b6228335 (patch)
tree979795c683ae5dbf683cfe53c9eece4939955246 /bin/build-dist
parent5b5188ef9918d196173a4a543532c497140e639c (diff)
parentd14880db5820ce2175bda7bbe761c21fd6c454d0 (diff)
Merge remote-tracking branch 'origin/master' into lexelby-mac-build-mk2
Diffstat (limited to 'bin/build-dist')
-rwxr-xr-xbin/build-dist12
1 files changed, 3 insertions, 9 deletions
diff --git a/bin/build-dist b/bin/build-dist
index 4d73313a..79c89838 100755
--- a/bin/build-dist
+++ b/bin/build-dist
@@ -19,17 +19,11 @@ fi
# above!
pyinstaller_args+="--hidden-import gi.repository.Gtk "
-# mac and windows build seem to miss wx and libembroidery import
-pyinstaller_args+="--hidden-import wx --hidden-import libembroidery "
-
-if [ -d windows-libembroidery ]; then
- pyinstaller_args+="-p windows-libembroidery "
-else
- pyinstaller_args+="-p embroidermodder/experimental/python/binding "
-fi
+# mac and windows build seem to miss wx import
+pyinstaller_args+="--hidden-import wx "
# This lets pyinstaller see inkex.py, etc.
-pyinstaller_args+="-p inkscape-0.92.2/share/extensions "
+pyinstaller_args+="-p inkscape-0.92.3/share/extensions "
# output useful debugging info that helps us trace library dependency issues
pyinstaller_args+="--log-level DEBUG "