diff options
author | kubak <kuba@openoffice.com.pl> | 2024-04-23 23:45:54 +0200 |
---|---|---|
committer | Mike Kaganski <mike.kaganski@collabora.com> | 2024-04-26 13:11:34 +0200 |
commit | 8a24efd16d1515ff806406d37d234e4ac7940c45 (patch) | |
tree | 46292357bff6d8dc5c5259d4962536946fd95562 /scp2 | |
parent | 546741148863ae0b2a25cc994a7323c8113cb573 (diff) |
MSI: Fix use of illegal character in table Binary
ICE03 ERROR Invalid identifier; Table: Binary, Column: Name, Key(s): Windows61-KB2999226-x64msu
ICE03 ERROR Invalid identifier; Table: Binary, Column: Name, Key(s): Windows81-KB2999226-x64msu
ICE03 ERROR Invalid identifier; Table: Binary, Column: Name, Key(s): Windows8-RT-KB2999226-x64msu
We use the illegal "-" character.
https: //learn.microsoft.com/en-us/windows/win32/msi/binary-table
https: //learn.microsoft.com/en-us/windows/win32/msi/identifier
Change-Id: I44aea358964c085599ab42f134535fa97840dd26
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166567
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'scp2')
-rw-r--r-- | scp2/source/ooo/ucrt.scp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/scp2/source/ooo/ucrt.scp b/scp2/source/ooo/ucrt.scp index b945523fe961..7f4ec8195870 100644 --- a/scp2/source/ooo/ucrt.scp +++ b/scp2/source/ooo/ucrt.scp @@ -92,7 +92,7 @@ WindowsCustomAction gid_Customaction_check_win7x64_ucrt Name = "check_win7x64_ucrt"; Typ = "51"; Source = "InstMSUBinary"; - Target = "KB2999226|Windows61-KB2999226-x64msu"; + Target = "KB2999226|Windows61_KB2999226_x64msu"; Inbinarytable = 0; Assignment1 = ("InstallExecuteSequence", "Not Installed And VersionNT = 601 And VersionNT64", "FileCost"); Styles = "NO_FILE"; @@ -102,7 +102,7 @@ WindowsCustomAction gid_Customaction_check_win8x64_ucrt Name = "check_win8x64_ucrt"; Typ = "51"; Source = "InstMSUBinary"; - Target = "KB2999226|Windows8-RT-KB2999226-x64msu"; + Target = "KB2999226|Windows8_RT_KB2999226_x64msu"; Inbinarytable = 0; Assignment1 = ("InstallExecuteSequence", "Not Installed And VersionNT = 602 And VersionNT64", "check_win7x64_ucrt"); Styles = "NO_FILE"; @@ -112,7 +112,7 @@ WindowsCustomAction gid_Customaction_check_win81x64_ucrt Name = "check_win81x64_ucrt"; Typ = "51"; Source = "InstMSUBinary"; - Target = "KB2999226|Windows81-KB2999226-x64msu"; + Target = "KB2999226|Windows81_KB2999226_x64msu"; Inbinarytable = 0; Assignment1 = ("InstallExecuteSequence", "Not Installed And VersionNT = 603 And (Not WINMAJORVER Or WINMAJORVER = \"#6\") And VersionNT64", "check_win8x64_ucrt"); Styles = "NO_FILE"; @@ -128,7 +128,7 @@ WindowsCustomAction gid_Customaction_check_win7x32_ucrt Name = "check_win7x32_ucrt"; Typ = "51"; Source = "InstMSUBinary"; - Target = "KB2999226|Windows61-KB2999226-x86msu"; + Target = "KB2999226|Windows61_KB2999226_x86msu"; Inbinarytable = 0; Assignment1 = ("InstallExecuteSequence", "Not Installed And VersionNT = 601 And Not VersionNT64", "check_win81x64_ucrt"); Styles = "NO_FILE"; @@ -138,7 +138,7 @@ WindowsCustomAction gid_Customaction_check_win8x32_ucrt Name = "check_win8x32_ucrt"; Typ = "51"; Source = "InstMSUBinary"; - Target = "KB2999226|Windows8-RT-KB2999226-x86msu"; + Target = "KB2999226|Windows8_RT_KB2999226_x86msu"; Inbinarytable = 0; Assignment1 = ("InstallExecuteSequence", "Not Installed And VersionNT = 602 And Not VersionNT64", "check_win7x32_ucrt"); Styles = "NO_FILE"; @@ -148,7 +148,7 @@ WindowsCustomAction gid_Customaction_check_win81x32_ucrt Name = "check_win81x32_ucrt"; Typ = "51"; Source = "InstMSUBinary"; - Target = "KB2999226|Windows81-KB2999226-x86msu"; + Target = "KB2999226|Windows81_KB2999226_x86msu"; Inbinarytable = 0; Assignment1 = ("InstallExecuteSequence", "Not Installed And VersionNT = 603 And (Not WINMAJORVER Or WINMAJORVER = \"#6\") And Not VersionNT64", "check_win8x32_ucrt"); Styles = "NO_FILE"; |