Changeset 38390 in vbox for trunk/src/VBox/Installer
- Timestamp:
- Aug 9, 2011 11:12:52 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 73424
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/darwin/Makefile.kmk
r38359 r38390 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 … … 633 633 endif 634 634 635 VBOX_DI_VBAPP_ OTHER_EXEC_UNIVERSAL_BINS = \635 VBOX_DI_VBAPP_UNIVERSAL_PROGS = \ 636 636 MacOS/vmstarter 637 637 … … 719 719 $(foreach f,$(VBOX_INSTALLER_ADD_LANGUAGES), \ 720 720 $(VBOX_BRAND_$(f)_VIRTUALBOX_DESCRIPTION_PLIST)) \ 721 $(foreach f, $(VBOX_DI_VBAPP_DYLIBS) $(VBOX_DI_VBAPP_OTHER_UNIVERSAL_BINS) $(VBOX_DI_VBAPP_ OTHER_EXEC_UNIVERSAL_BINS) $(VBOX_DI_VBAPP_OTHER_BINS) $(VBOX_DI_VBAPP_PROGS) $(VBOX_DI_VBAPP_MISC_FILES)\721 $(foreach f, $(VBOX_DI_VBAPP_DYLIBS) $(VBOX_DI_VBAPP_OTHER_UNIVERSAL_BINS) $(VBOX_DI_VBAPP_UNIVERSAL_PROGS) $(VBOX_DI_VBAPP_OTHER_BINS) $(VBOX_DI_VBAPP_PROGS) $(VBOX_DI_VBAPP_MISC_FILES)\ 722 722 ,$(call VBOX_DI_FN_DEP_BOTH,VirtualBox.app/Contents/$(f)) ) \ 723 723 $(foreach f, $(VBOX_DI_VBAPP_DYLIBS.x86) $(VBOX_DI_VBAPP_MISC_FILES.x86)\ … … 790 790 $(VBOX_PATH_PACK_TMP)/VirtualBox.pkg.root/Applications/VirtualBox.app/Contents/MacOS/sdk/bindings/xpcom/java,) \ 791 791 $(addprefix $(VBOX_PATH_PACK_TMP)/VirtualBox.pkg.root/Applications/VirtualBox.app/Contents/,$(dir \ 792 $(VBOX_DI_VBAPP_DYLIBS) $(VBOX_DI_VBAPP_OTHER_UNIVERSAL_BINS) $(VBOX_DI_VBAPP_ OTHER_EXEC_UNIVERSAL_BINS) $(VBOX_DI_VBAPP_OTHER_BINS) $(VBOX_DI_VBAPP_PROGS) $(VBOX_DI_VBAPP_MISC_FILES) \792 $(VBOX_DI_VBAPP_DYLIBS) $(VBOX_DI_VBAPP_OTHER_UNIVERSAL_BINS) $(VBOX_DI_VBAPP_UNIVERSAL_PROGS) $(VBOX_DI_VBAPP_OTHER_BINS) $(VBOX_DI_VBAPP_PROGS) $(VBOX_DI_VBAPP_MISC_FILES) \ 793 793 $(if-expr defined(VBOX_WITH_COMBINED_PACKAGE) || "$(KBUILD_TARGET_ARCH)" == "amd64",$(VBOX_DI_VBAPP_DYLIBS.amd64) $(VBOX_DI_VBAPP_MISC_FILES.amd64),) \ 794 794 $(if-expr defined(VBOX_WITH_COMBINED_PACKAGE) || "$(KBUILD_TARGET_ARCH)" == "x86", $(VBOX_DI_VBAPP_DYLIBS.x86) $(VBOX_DI_VBAPP_MISC_FILES.x86),) \ … … 858 858 $(VBOX_PATH_DIST_64)/VirtualBox.app/Contents/$(otherbin) \ 859 859 -output $(VBOX_PATH_PACK_TMP)/VirtualBox.pkg.root/Applications/VirtualBox.app/Contents/$(otherbin)$(NLTAB)) 860 $(foreach otherbin, $(VBOX_DI_VBAPP_OTHER_ UNIVERSAL_BINS) \860 $(foreach otherbin, $(VBOX_DI_VBAPP_OTHER_BINS) \ 861 861 ,$(INSTALL) -m 0644 $(VBOX_PATH_DIST_32)/VirtualBox.app/Contents/$(otherbin) $(VBOX_PATH_PACK_TMP)/VirtualBox.pkg.root/Applications/VirtualBox.app/Contents/$(otherbin)-x86$(NLTAB) \ 862 862 $(INSTALL) -m 0644 $(VBOX_PATH_DIST_64)/VirtualBox.app/Contents/$(otherbin) $(VBOX_PATH_PACK_TMP)/VirtualBox.pkg.root/Applications/VirtualBox.app/Contents/$(otherbin)-amd64$(NLTAB)) … … 865 865 ,$(INSTALL) -m 0644 $(VBOX_PATH_DIST)/VirtualBox.app/Contents/$(otherbin) $(VBOX_PATH_PACK_TMP)/VirtualBox.pkg.root/Applications/VirtualBox.app/Contents/$(otherbin)-$(KBUILD_TARGET_ARCH)$(NLTAB)) 866 866 endif 867 @# C opy the other execbinaries.867 @# Create/copy the universal executable binaries. 868 868 ifdef VBOX_WITH_COMBINED_PACKAGE 869 $(foreach otherbin, $(VBOX_DI_VBAPP_ OTHER_EXEC_UNIVERSAL_BINS) \869 $(foreach otherbin, $(VBOX_DI_VBAPP_UNIVERSAL_PROGS) \ 870 870 ,$(VBOX_DI_LIPO) -create \ 871 871 $(VBOX_PATH_DIST_32)/VirtualBox.app/Contents/$(otherbin) \ 872 872 $(VBOX_PATH_DIST_64)/VirtualBox.app/Contents/$(otherbin) \ 873 873 -output $(VBOX_PATH_PACK_TMP)/VirtualBox.pkg.root/Applications/VirtualBox.app/Contents/$(otherbin)$(NLTAB)) 874 $(foreach otherbin, $(VBOX_DI_VBAPP_OTHER_EXEC_UNIVERSAL_BINS) \875 ,$(INSTALL) -m 0755 $(VBOX_PATH_DIST_32)/VirtualBox.app/Contents/$(otherbin) $(VBOX_PATH_PACK_TMP)/VirtualBox.pkg.root/Applications/VirtualBox.app/Contents/$(otherbin)-x86$(NLTAB) \876 $(INSTALL) -m 0755 $(VBOX_PATH_DIST_64)/VirtualBox.app/Contents/$(otherbin) $(VBOX_PATH_PACK_TMP)/VirtualBox.pkg.root/Applications/VirtualBox.app/Contents/$(otherbin)-amd64$(NLTAB))877 874 else 878 $(foreach otherbin, $(VBOX_DI_VBAPP_ OTHER_BINS) $(VBOX_DI_VBAPP_OTHER_EXEC_UNIVERSAL_BINS) \875 $(foreach otherbin, $(VBOX_DI_VBAPP_UNIVERSAL_PROGS) \ 879 876 ,$(INSTALL) -m 0755 $(VBOX_PATH_DIST)/VirtualBox.app/Contents/$(otherbin) $(VBOX_PATH_PACK_TMP)/VirtualBox.pkg.root/Applications/VirtualBox.app/Contents/$(otherbin)-$(KBUILD_TARGET_ARCH)$(NLTAB)) 880 877 endif
Note:
See TracChangeset
for help on using the changeset viewer.