diff options
author | Andras Timar <atimar@suse.com> | 2013-02-28 13:17:39 +0100 |
---|---|---|
committer | Andras Timar <atimar@suse.com> | 2013-02-28 13:24:57 +0100 |
commit | 6851c5fd4337af38884d16c05695da7e4e059dcc (patch) | |
tree | 2dd2c7ea52c723d5991f52f825ecb2825efa8a7a /desktop/WinResTarget_sofficebin.mk | |
parent | 889ec0e4d4afac36d4d462bfeaf146398baa4082 (diff) |
bin PATCH_SO_NAME crack
In VersionInfo of Windows executables the FileDescription property originally contained
80 times 'x' character. These executables were marked as PATCH_SO_NAME and later the
installer maker perl program replaced the xxxxxxxxxxx to the actual file description
which was defined in scp2. WHy was it good, I have no idea. The problem was that it
happened after postprocess, where we signed the binaries, thus diigital signature became
corrupted. It is better to give file descriptions via makefiles.
Change-Id: Id5ad4470bb7a6313b33fbba09d72d9a009163a89
Diffstat (limited to 'desktop/WinResTarget_sofficebin.mk')
-rw-r--r-- | desktop/WinResTarget_sofficebin.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/desktop/WinResTarget_sofficebin.mk b/desktop/WinResTarget_sofficebin.mk index 54f289bf91c4..98580fb7c1b7 100644 --- a/desktop/WinResTarget_sofficebin.mk +++ b/desktop/WinResTarget_sofficebin.mk @@ -34,6 +34,7 @@ $(eval $(call gb_WinResTarget_set_include,sofficebin/src,\ $(eval $(call gb_WinResTarget_add_defs,sofficebin/src,\ -DRES_APP_NAME=soffice \ + -DRES_APP_FILEDESC="$(PRODUCTNAME)" \ -DRES_APP_ICON=icons/main_app.ico \ -DVERVARIANT=$(BUILD) \ -DRES_APP_VENDOR="$(OOO_VENDOR)" \ |