Put away vcredist_2013 removing (#512)

This commit is contained in:
Eugene Kozyrev
2022-08-23 12:42:03 +03:00
committed by GitHub
parent 32e2956346
commit 96312f29e3

View File

@ -221,24 +221,16 @@ def make_advinst():
aic_content += [
"SetPackageType x86",
"SetAppdir -buildname DefaultBuild -path [ProgramFilesFolder][MANUFACTURER_INSTALL_FOLDER]\\[PRODUCT_INSTALL_FOLDER]",
'DelPrerequisite "Microsoft Visual C++ 2015-2022 Redistributable (x64)"'
]
if not onlyoffice:
aic_content += [
'DelPrerequisite "Microsoft Visual C++ 2015-2022 Redistributable (x64)"',
'DelPrerequisite "Microsoft Visual C++ 2013 Redistributable (x64)"'
]
if machine == '64':
aic_content += [
'DelPrerequisite "Microsoft Visual C++ 2015-2022 Redistributable (x86)"'
]
if not onlyoffice:
aic_content += [
'DelPrerequisite "Microsoft Visual C++ 2015-2022 Redistributable (x86)"',
'DelPrerequisite "Microsoft Visual C++ 2013 Redistributable (x86)"'
]
if onlyoffice:
aic_content += [
'DelPrerequisite "Microsoft Visual C++ 2013 Redistributable (x86)"',
'DelPrerequisite "Microsoft Visual C++ 2013 Redistributable (x64)"',
"DelFolder CUSTOM_PATH"
]
else: