Changeset 38028 in vbox
- Timestamp:
- Jul 18, 2011 3:09:01 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.kmk
r38023 r38028 66 66 VBOX_PUEL_MANGLED_NAME := Oracle_VM_VirtualBox_Extension_Pack 67 67 68 # Install paths. 69 PATH_INS = $(PATH_OUT) 68 # Install paths 69 ## @todo This will change after 4.1 is branched off! 70 # What is now 'bin' and 'lib' will be moved down under 'staged/', except on 71 # darwin where it's currently called 'dist' which will be renamed to 'staged'. 72 # When running 'kmk install' files will be copied to 'dist/', on unix systems 73 # this will be done in FHS fashion assuming /usr/local or /usr as 'prefix'. 74 # 75 # Changes related to this are marked VBOX_WITH_NEW_LAYOUT, while changes marked 76 # VBOX_WITH_0_2_0_KBUILD are for building with current kBuild svn. 77 if $(KMK_REVISION) >= 2475 \ 78 && $(KBUILD_VERSION_MAJOR) == 0 \ 79 && ( ($(KBUILD_VERSION_MINOR) == 1 && $(KBUILD_VERSION_PATCH) >= 99) \ 80 || $(KBUILD_VERSION_MINOR) >= 2) 81 VBOX_WITH_0_2_0_KBUILD = 1 82 endif 83 ifndef VBOX_WITH_NEW_LAYOUT 84 PATH_STAGE = $(PATH_OUT) 85 ifdef VBOX_WITH_0_2_0_KBUILD 86 PATH_INS = $(PATH_OUT)/dist 87 else 88 PATH_INS = $(PATH_OUT) 89 endif 90 endif 70 91 ifeq ($(KBUILD_TARGET),darwin) 71 INST_DIST = dist/ 92 ifndef VBOX_WITH_NEW_LAYOUT 93 INST_DIST = dist/ 94 else 95 INST_DIST := 96 endif 72 97 INST_SDK = $(INST_DIST)sdk/ 73 98
Note:
See TracChangeset
for help on using the changeset viewer.