Small windows build changes
authorMaran <maran.hidskes@gmail.com>
Thu, 11 Apr 2013 20:08:27 +0000 (22:08 +0200)
committerMaran <maran.hidskes@gmail.com>
Thu, 11 Apr 2013 20:08:32 +0000 (22:08 +0200)
contrib/build-wine/deterministic.spec

index 13af6a9..4c7e43a 100644 (file)
@@ -43,14 +43,15 @@ a.datas += extra_datas('plugins')
 pyz = PYZ(a.pure)\r
 exe = EXE(pyz,\r
           a.scripts,\r
-          exclude_binaries=1,\r
+          a.binaries,\r
+          a.datas,\r
           name=os.path.join('build\\pyi.win32\\electrum', 'electrum.exe'),\r
           debug=False,\r
           strip=None,\r
           upx=False,\r
           icon='icons/electrum.ico',\r
-          console=True)\r
-          # The console True makes an annoying black box pop up, but it does make Electrum accept command line options.\r
+          console=False)\r
+          # The console True makes an annoying black box pop up, but it does make Electrum output command line commands, with this turned off no output will be given but commands can still be used\r
 \r
 coll = COLLECT(exe,\r
                a.binaries,\r
@@ -60,5 +61,5 @@ coll = COLLECT(exe,
                upx=True,\r
                debug=False,\r
                icon='icons/electrum.ico',\r
-               console=True,\r
+               console=False,\r
                name=os.path.join('dist', 'electrum'))\r