summaryrefslogtreecommitdiff
path: root/misc/qutebrowser.spec
diff options
context:
space:
mode:
authorFlorian Bruhin <git@the-compiler.org>2016-05-28 23:18:29 +0200
committerFlorian Bruhin <git@the-compiler.org>2016-05-28 23:18:29 +0200
commit90fa2a50ce9ec4c817674698c0d6a79d718c2a6a (patch)
tree8dfd0914470ba690e58dd237990fc7f82d7ff2d0 /misc/qutebrowser.spec
parentfc3e1b4ede00001706c0dbe2f52d320204e044a4 (diff)
downloadqutebrowser-90fa2a50ce9ec4c817674698c0d6a79d718c2a6a.tar.gz
qutebrowser-90fa2a50ce9ec4c817674698c0d6a79d718c2a6a.zip
pyinstaller: Use qutebrowser/__main__.py
When we use qutebrowser.py, PyInstaller 3.2 gets confused somehow (because of the name conflict with qutebrowser/ maybe?) and doesn't do anything when running the bundled app. With qutebrowser/__main__.py the generated filename is still correct and it actually works.
Diffstat (limited to 'misc/qutebrowser.spec')
-rw-r--r--misc/qutebrowser.spec2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/qutebrowser.spec b/misc/qutebrowser.spec
index d9e53e13c..65e68029d 100644
--- a/misc/qutebrowser.spec
+++ b/misc/qutebrowser.spec
@@ -37,7 +37,7 @@ else:
icon = None
-a = Analysis(['../qutebrowser.py'],
+a = Analysis(['../qutebrowser/__main__.py'],
pathex=['misc'],
binaries=None,
datas=get_data_files(),