From 90fa2a50ce9ec4c817674698c0d6a79d718c2a6a Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Sat, 28 May 2016 23:18:29 +0200 Subject: [PATCH] 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. --- misc/qutebrowser.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(),