Changeset 38082 in vbox for trunk/src/VBox/Additions/freebsd
- Timestamp:
- Jul 20, 2011 2:26:24 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 73029
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/freebsd/Makefile.kmk
r28800 r38082 43 43 ifndef VBOX_OSE 44 44 BLDDIRS += $(VBOX_FBSD_ADD_INS_OUT_DIR) $(VBOX_FBSD_ADD_INS_OUT_DIR)/module 45 PACKING += $(PATH_ BIN)/additions/VBoxFreeBSDAdditions.tbz45 PACKING += $(PATH_STAGE_BIN)/additions/VBoxFreeBSDAdditions.tbz 46 46 OTHER_CLEAN += $(PACKING) 47 47 endif … … 92 92 # pattern rule for copying the debug info from the VBOX_FBSD_ADD_STRIP_BIN files to the installation directory 93 93 $(addprefix $(VBOX_FBSD_ADD_INS_OUT_DIR)/,$(VBOX_FBSD_ADD_DBG_SYM_FILES)): \ 94 $(VBOX_FBSD_ADD_INS_OUT_DIR)/%.dbgsym : $(PATH_ BIN)/additions/% | $$(dir $$@)94 $(VBOX_FBSD_ADD_INS_OUT_DIR)/%.dbgsym : $(PATH_STAGE_BIN)/additions/% | $$(dir $$@) 95 95 $(call MSG_TOOL,copydbg,$<,$@) 96 96 $(QUIET)objcopy --only-keep-debug $< $@ … … 98 98 # pattern rule for stripping and copying the VBOX_FBSD_ADD_STRIP_BIN files to the installation directory 99 99 $(addprefix $(VBOX_FBSD_ADD_INS_OUT_DIR)/,$(VBOX_FBSD_ADD_STRIP_BIN)): \ 100 $(VBOX_FBSD_ADD_INS_OUT_DIR)/% : $(PATH_ BIN)/additions/% \100 $(VBOX_FBSD_ADD_INS_OUT_DIR)/% : $(PATH_STAGE_BIN)/additions/% \ 101 101 $(VBOX_FBSD_ADD_INS_OUT_DIR)/%.dbgsym \ 102 102 | $$(dir $$@) … … 107 107 # pattern rule for stripping and copying the VBOX_FBSD_ADD_STRIP_OBJ files to the installation directory 108 108 $(addprefix $(VBOX_FBSD_ADD_INS_OUT_DIR)/,$(VBOX_FBSD_ADD_STRIP_OBJ)): \ 109 $(VBOX_FBSD_ADD_INS_OUT_DIR)/% : $(PATH_ BIN)/additions/% | $$(dir $$@)109 $(VBOX_FBSD_ADD_INS_OUT_DIR)/% : $(PATH_STAGE_BIN)/additions/% | $$(dir $$@) 110 110 $(call MSG_INST_FILE,$<,$@) 111 111 ifeq ($(VBOX_DO_STRIP),) … … 119 119 # pattern rule for copying the VBOX_FBSD_ADD_MODULES files to the installation directory 120 120 $(VBOX_FBSD_ADD_INS_MODULES): \ 121 $(VBOX_FBSD_ADD_INS_OUT_DIR)/module/% : $(PATH_ BIN)/additions/src/% | $(VBOX_FBSD_ADD_INS_OUT_DIR)/module/121 $(VBOX_FBSD_ADD_INS_OUT_DIR)/module/% : $(PATH_STAGE_BIN)/additions/src/% | $(VBOX_FBSD_ADD_INS_OUT_DIR)/module/ 122 122 $(call MSG_INST_FILE,$<,$@) 123 123 # Remove target directories first, otherwise the behaviour of cp will not be … … 173 173 # we've got everything included. 174 174 # 175 $(PATH_ BIN)/additions/VBoxFreeBSDAdditions.tbz: \175 $(PATH_STAGE_BIN)/additions/VBoxFreeBSDAdditions.tbz: \ 176 176 $(INSTARGET_fbsd_add_inst-nobin) \ 177 177 $(INSTARGET_fbsd_add_inst-bin) \ … … 179 179 $(VBOX_FBSD_ADD_INS_MODULES) \ 180 180 $(VBOX_FBSD_ADD_INS_OUT_DIR)/install.sh \ 181 $(wildcard $(PATH_ BIN)/additions/src/*) \182 $(wildcard $(PATH_ BIN)/additions/src/*/*) \183 $(wildcard $(PATH_ BIN)/additions/src/*/*/*) \184 $(wildcard $(PATH_ BIN)/additions/src/*/*/*/*) \181 $(wildcard $(PATH_STAGE_BIN)/additions/src/*) \ 182 $(wildcard $(PATH_STAGE_BIN)/additions/src/*/*) \ 183 $(wildcard $(PATH_STAGE_BIN)/additions/src/*/*/*) \ 184 $(wildcard $(PATH_STAGE_BIN)/additions/src/*/*/*/*) \ 185 185 $(VBOX_VERSION_STAMP) 186 186 pkg_create \
Note:
See TracChangeset
for help on using the changeset viewer.