Changeset 37016 in vbox for trunk/src/VBox/Installer
- Timestamp:
- May 9, 2011 5:48:43 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 71631
- Location:
- trunk/src/VBox/Installer/win
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/win/Makefile.kmk
r35166 r37016 5 5 6 6 # 7 # Copyright (C) 2006-201 0Oracle Corporation7 # Copyright (C) 2006-2011 Oracle Corporation 8 8 # 9 9 # This file is part of VirtualBox Open Source Edition (OSE), as … … 356 356 -E 'VBOX_C_YEAR=$(VBOX_C_YEAR)' \ 357 357 -E 'VBOX_VERSION_STRING=$(VBOX_VERSION_STRING)' \ 358 -E 'VBOX_VERSION_STRING_RAW=$(VBOX_VERSION_STRING_RAW)' \ 358 359 -E 'VBOX_VERSION_MAJOR_INST=$(VBOX_VERSION_MAJOR)' \ 359 360 -E 'VBOX_VERSION_MINOR_INST=$(VBOX_VERSION_MINOR)' \ … … 427 428 # 428 429 $(VBOX_WIN_INST_OUT_DIR)/VBoxKey.wxi: $(PATH_SUB_CURRENT)/VBoxKey.wxi $(VBOX_VERSION_STAMP) | $$(dir $$@) 429 $(SED) -e 's/%VER%/$(VBOX_VERSION_STRING)/' --output $@ $< 430 $(SED) -e 's/%VER%/$(VBOX_VERSION_STRING_RAW)/' --output $@ $< 431 $(SED) -e 's/%VER_EXT%/$(VBOX_VERSION_STRING)/' --output $@ $< 430 432 431 433 # -
trunk/src/VBox/Installer/win/VBoxKey.wxi
r31659 r37016 1 1 <Include> 2 2 <Registry Root="HKLM" Key="$(var.Property_RegKey)" Name="Version" Value="%VER%" Type="string" /> 3 <Registry Root="HKLM" Key="$(var.Property_RegKey)" Name="VersionExt" Value="%VER_EXT%" Type="string" /> 3 4 <Registry Root="HKLM" Key="$(var.Property_RegKey)" Name="InstallDir" Value="[INSTALLDIR]" Type="string" /> 4 5 </Include> -
trunk/src/VBox/Installer/win/VirtualBox.wxs
r36715 r37016 3 3 VirtualBox Windows Installation Script (WiX) 4 4 5 Copyright (C) 2006-201 0Oracle Corporation5 Copyright (C) 2006-2011 Oracle Corporation 6 6 7 7 This file is part of VirtualBox Open Source Edition (OSE), as … … 15 15 16 16 <?define Property_RegKey ="Software\$(env.VBOX_VENDOR_SHORT)\VirtualBox" ?> 17 <?define Property_Version = "$(env.VBOX_VERSION_STRING)" ?> 17 <?define Property_Version = "$(env.VBOX_VERSION_STRING_RAW)" ?> 18 <?define Property_VersionExt = "$(env.VBOX_VERSION_STRING)" ?> 18 19 <?define Property_Upgrade = "yes" ?> 19 20 … … 74 75 <!-- Package GUIDs must be different for each package. The "???" directs WiX to create one. --> 75 76 <Package Id="????????-????-????-????-????????????" Keywords="Installer" 76 Description="$(env.VBOX_PRODUCT) $(var.Property_Version ) installation package"77 Description="$(env.VBOX_PRODUCT) $(var.Property_VersionExt) installation package" 77 78 Comments="$(env.VBOX_PRODUCT) installation package" 78 79 Manufacturer="$(env.VBOX_VENDOR)"
Note:
See TracChangeset
for help on using the changeset viewer.