Hello,

I made a mistake when converting the build system to Scons. For some reason, I
forgot to add the resource section to the executable, so that the code to
change the icon wasn't working. This is fixed with this simple patch. I also
rebuilt the bootloader executables of course.

This should fix the problems that Pavol Severa and Fabrizio Milo were having.
Thanks to both for the bugreport!

Committed as r271.

Giovanni Bajo
Index: Sconscript
===================================================================
--- Sconscript  (revision 270)
+++ Sconscript  (working copy)
@@ -41,7 +41,7 @@
                      "zlib/inffast.c",
                      "zlib/inftrees.c"])
 run = env.Program("run",
-                 ["common/launch.c", "windows/winmain.c", zlib])
+                 ["common/launch.c", "windows/winmain.c", zlib, resfile])
 dll = env.SharedLibrary("inprocsrvr",
                         ["common/launch.c", "windows/dllmain.c", zlib])
 
_______________________________________________
PyInstaller mailing list
[email protected]
http://lists.hpcf.upr.edu/mailman/listinfo/pyinstaller

Reply via email to