Changeset 64718 in vbox
- Timestamp:
- Nov 19, 2016 5:00:04 PM (8 years ago)
- Location:
- trunk/src/VBox/Additions/linux
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/Makefile.kmk
r64525 r64718 303 303 lnx_add_inst-exec_EXEC_SOURCES = \ 304 304 $(VBOX_REL_X11_ADD_INST)98vboxadd-xclient \ 305 $(VBOX_REL_X11_ADD_INST)x11config.sh 305 $(VBOX_REL_X11_ADD_INST)x11config.sh \ 306 $(VBOX_REL_LNX_INST_SRC)check_module_dependencies.sh 306 307 307 308 -
trunk/src/VBox/Additions/linux/installer/vboxadd.sh
r64705 r64718 316 316 --module-source $MODULE_SRC/vboxguest \ 317 317 --no-print-directory install >> $LOG 2>&1; then 318 info "Look at $LOG to find out what went wrong" 318 # If check_module_dependencies.sh fails it prints a message itself. 319 "${INSTALL_DIR}"/other/check_module_dependencies.sh 2>&1 && 320 info "Look at $LOG to find out what went wrong" 319 321 return 1 320 322 fi … … 434 436 else 435 437 mod_succ=1 436 info "Please check that you have gcc, make, the header files for your Linux kernel and possibly perl installed."437 438 fi 438 439 test -n "${QUICKSETUP}" && return "${mod_succ}"
Note:
See TracChangeset
for help on using the changeset viewer.