Changeset 37302 in vbox
- Timestamp:
- Jun 1, 2011 9:17:47 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/linux/Makefile.kmk
r37088 r37302 317 317 $(VBOX_PATH_LNX_INST_SRC)/installer-utils.sh \ 318 318 $(VBOX_PATH_LNX_INST_SRC)/vboxdrv-pardus.py \ 319 $(VBOX_PATH_LNX_INST_SRC)/uninstall.sh \ 320 $(wildcard $(PATH_BIN)/src/*) \ 321 $(wildcard $(PATH_BIN)/src/*/*) \ 322 $(wildcard $(PATH_BIN)/src/*/*/*) \ 323 $(wildcard $(PATH_BIN)/src/*/*/*/*) 319 $(VBOX_PATH_LNX_INST_SRC)/uninstall.sh 324 320 $(call MSG_TOOL,makeself,,$@) 325 321 $(QUIET)$(RM) -f $(wildcard $(PATH_BIN)/VirtualBox-*.run) … … 379 375 380 376 # 377 # The files that the tar archives depend on. The wildcards are ugly, but they 378 # do save us from having to update the makefile whenever something new is added 379 # to the module source directories. 380 # 381 local arch_deps = \ 382 $(addprefix $(VBOX_LNX_INST_OUT_DIR)/archive/, $(VBOX_LNX_arch_deps)) \ 383 $(VBOX_LNX_INST_DEP_ON_MAKEFILE) \ 384 $(VBOX_VERSION_STAMP) \ 385 $(wildcard $(PATH_BIN)/src/*) \ 386 $(wildcard $(PATH_BIN)/src/*/*) \ 387 $(wildcard $(PATH_BIN)/src/*/*/*) \ 388 $(wildcard $(PATH_BIN)/src/*/*/*/*) 389 390 391 # 381 392 # .tar.bz2 for converting into .run 382 393 # 383 394 $(VBOX_LNX_INST_STAGE_DIR)/VirtualBox.tar.bz2: \ 384 $(addprefix $(VBOX_LNX_INST_OUT_DIR)/archive/, $(VBOX_LNX_ARCH_FILES)) \ 385 $(VBOX_LNX_INST_DEP_ON_MAKEFILE) \ 386 $(VBOX_VERSION_STAMP) 395 $(arch_deps) 387 396 $(call MSG_L1,Packing $@) 388 397 $(QUIET)$(RM) -f -- $@ $(patsubst %.bz2,%,$@) … … 400 409 # 401 410 $(PATH_BIN)/VirtualBox.tar.bz2: \ 402 $(addprefix $(VBOX_LNX_INST_OUT_DIR)/archive/, $(VBOX_LNX_ARCH_FILES)) \ 403 $(VBOX_LNX_INST_DEP_ON_MAKEFILE) \ 404 $(VBOX_VERSION_STAMP) 411 $(arch_deps) 405 412 $(call MSG_L1,Packing $@) 406 413 $(QUIET)$(RM) -f -- $(VBOX_LNX_INST_OUT_DIR)/VirtualBox-$(VBOX_VERSION_STRING) $@ $(patsubst %.bz2,%,$@)
Note:
See TracChangeset
for help on using the changeset viewer.