Changeset 86798 in vbox
- Timestamp:
- Nov 3, 2020 2:18:48 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/win/UserInterface.wxi
r86782 r86798 306 306 <?else ?> 307 307 <?if $(env.VBOX_WITH_PYTHON) = "yes" ?> 308 <Publish Event="NewDialog" Value="VBoxWarnPythonDlg"><![CDATA[(&VBoxPython=3 AND (VBOX_PYTHON_DEPS_INSTALLED="0"))]]></Publish> 309 <Publish Event="NewDialog" Value="VBoxVerifyReadyDlg"><![CDATA[((&VBoxPython<3) OR (VBOX_PYTHON_DEPS_INSTALLED="1"))]]></Publish> 308 <!-- Check for the Python core package and other dependencies first. 309 The install helper code will set the public properties VBOX_PYTHON_INSTALLED / VBOX_PYTHON_DEPS_INSTALLED. --> 310 <Publish Event="DoAction" Value="ca_IsPythonInstalled" Order="0" /> 311 <Publish Event="DoAction" Value="ca_ArePythonAPIDepsInstalled" Order="1" /> 312 <Publish Event="NewDialog" Value="VBoxWarnPythonDlg"><![CDATA[(&VBoxPython=3) AND (VBOX_PYTHON_DEPS_INSTALLED="0")]]></Publish> 313 <Publish Event="NewDialog" Value="VBoxVerifyReadyDlg"><![CDATA[(&VBoxPython<3) OR (VBOX_PYTHON_DEPS_INSTALLED="1")]]></Publish> 310 314 <?else ?> 311 315 <Publish Event="NewDialog" Value="VBoxVerifyReadyDlg">1</Publish> … … 1238 1242 <Custom Action="ca_OriginalTargetDir" After="FileCost"><![CDATA[(NOT INSTALLDIR) AND (NOT EXISTINGINSTALLDIR)]]></Custom> 1239 1243 <Custom Action="ca_DefaultTargetDir" After="FileCost"><![CDATA[NOT Installed AND (NOT INSTALLDIR) AND EXISTINGINSTALLDIR]]></Custom> 1240 <?if $(env.VBOX_WITH_PYTHON) = "yes" ?> 1241 <Custom Action="ca_IsPythonInstalled" After="FileCost" /> 1242 <Custom Action="ca_ArePythonAPIDepsInstalled" After="ca_IsPythonInstalled" /> 1243 <?endif?> 1244 1244 1245 <FindRelatedProducts Suppress="no">1</FindRelatedProducts> 1245 1246
Note:
See TracChangeset
for help on using the changeset viewer.