Fix #1225552 [Windows portable executable file description should be "Calibre"](https://bugs.launchpad.net/calibre/+bug/1225552)

This commit is contained in:
Kovid Goyal 2013-09-15 08:45:09 +05:30
parent 48757f89c3
commit ac2dd2f7a2

View File

@ -485,7 +485,7 @@ class Win32Freeze(Command, WixMixIn):
'/LIBPATH:'+self.obj_dir, '/SUBSYSTEM:WINDOWS', '/LIBPATH:'+self.obj_dir, '/SUBSYSTEM:WINDOWS',
'/RELEASE', '/RELEASE',
'/ENTRY:wWinMainCRTStartup', '/ENTRY:wWinMainCRTStartup',
'/OUT:'+exe, self.embed_resources(exe), '/OUT:'+exe, self.embed_resources(exe, desc='Calibre Portable', product_description='Calibre Portable'),
obj, 'User32.lib'] obj, 'User32.lib']
self.run_builder(cmd) self.run_builder(cmd)