Changeset 51028 in vbox
- Timestamp:
- Apr 10, 2014 10:16:35 AM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 93241
- Location:
- trunk/src/VBox/Installer/win
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/win/Makefile.kmk
r51027 r51028 57 57 # 58 58 VBOX_INSTALLER_MERGE_MODULES = App USB NetAdp NetFlt Python 59 60 # 61 # Use merge modules if we're not doing an official release. 62 # This will increase the overall installer size significantly because 63 # merge modules are not able to use a common .cab file to reduce their 64 # size. 65 # 66 ifneq ($(int-mod $(VBOX_VERSION_BUILD),2),0) 67 VBOX_WITH_MSM_INSTALL := 1 68 endif 59 69 60 70 # … … 144 154 145 155 ifdef VBOX_WITH_MSM_INSTALL 146 $(foreach module,$(VBOX_INSTALLER_MERGE_MODULES),\147 $(foreach lang,$(VBOX_INSTALLER_LANGUAGES), \148 OTHER_CLEAN +=\149 150 151 152 156 OTHER_CLEAN += \ 157 $(foreach module,$(VBOX_INSTALLER_MERGE_MODULES), \ 158 $(foreach lang,$(VBOX_INSTALLER_LANGUAGES), \ 159 $(VBOX_WIN_INST_OUT_DIR)/VBoxMerge$(module).msm.dep \ 160 $(VBOX_WIN_INST_OUT_DIR)/VBoxMerge$(module)_$(lang).msm \ 161 $(VBOX_WIN_INST_OUT_DIR)/VBoxMerge$(module)_$(lang).wixobj \ 162 $(VBOX_WIN_INST_OUT_DIR)/VBoxMerge$(module)_$(lang).wixpdb)) 153 163 endif 154 164 … … 633 643 $(SED) -f $(VBOX_PATH_WIN_INST_SRC)/dep.sed \ 634 644 --append $(VBOX_WIN_INST_OUT_DIR)/VBoxMerge$(module).msm.dep \ 635 $(VBOX_PATH_WIN_INST_SRC)/VBoxMerge$(module).wx s\645 $(VBOX_PATH_WIN_INST_SRC)/VBoxMerge$(module).wxi \ 636 646 $(VBOX_PATH_WIN_INST_SRC)/UserInterface.wxi \ 637 647 $(VBOX_WIN_INST_OUT_DIR)/VirtualBox_TypeLib.wxi \ -
trunk/src/VBox/Installer/win/VBoxMergeApp.wxs
r51023 r51028 54 54 55 55 <?include VBoxMergeApp.wxi ?> 56 <?include VBoxMergeAppCA.wxi ?>57 56 58 57 </Directory> <!-- MergeRedirectFolder directory --> 59 58 </Directory> <!-- TARGETDIR --> 60 59 60 <?include VBoxMergeAppCA.wxi ?> 61 61 62 </Module> 62 63 </Wix> -
trunk/src/VBox/Installer/win/VBoxMergeNetFlt.wxs
r51023 r51028 39 39 40 40 <?include VBoxMergeNetFlt.wxi ?> 41 <?include VBoxMergeNetFltCA.wxi ?>42 41 43 42 </Directory> <!-- MergeRedirectFolder --> 44 43 </Directory> <!-- TARGETDIR --> 45 44 45 <?include VBoxMergeNetFltCA.wxi ?> 46 46 47 </Module> 47 48 </Wix> -
trunk/src/VBox/Installer/win/VBoxMergePython.wxs
r51023 r51028 39 39 40 40 <?include VBoxMergePython.wxi ?> 41 <?include VBoxMergePythonCA.wxi ?>42 41 43 42 </Directory> <!-- MergeRedirectFolder --> 44 43 </Directory> <!-- TARGETDIR --> 45 44 45 <?include VBoxMergePythonCA.wxi ?> 46 46 47 </Module> 47 48 </Wix> -
trunk/src/VBox/Installer/win/VBoxMergePythonCA.wxi
r51023 r51028 1 <?xml version="1.0"?>2 <!--3 VirtualBox Windows Installation Script (WiX)4 5 Copyright (C) 2006-2014 Oracle Corporation6 7 This file is part of VirtualBox Open Source Edition (OSE), as8 available from http://www.virtualbox.org. This file is free software;9 you can redistribute it and/or modify it under the terms of the GNU10 General Public License (GPL) as published by the Free Software11 Foundation, in version 2 as it comes in the "COPYING" file of the12 VirtualBox OSE distribution. VirtualBox OSE is distributed in the13 hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.14 -->15 16 1 <?xml version="1.0"?> 17 2 <!--
Note:
See TracChangeset
for help on using the changeset viewer.