Changeset 74412 in vbox
- Timestamp:
- Sep 21, 2018 4:47:56 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 125247
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/installer/vboxadd.sh
r72196 r74412 131 131 module_build_log() 132 132 { 133 setup_log 134 echo "${1}" | egrep -v \ 135 "^test -e include/generated/autoconf.h|^echo >&2|^/bin/false)$" \ 136 >> "${LOG}" 133 log "Error building the module. Build output follows." 134 echo "" 135 echo "${1}" >> "${LOG}" 137 136 } 138 137 … … 345 344 --no-print-directory install 2>&1`; then 346 345 # If check_module_dependencies.sh fails it prints a message itself. 347 log "Error building the module:"348 346 module_build_log "$myerr" 349 347 "${INSTALL_DIR}"/other/check_module_dependencies.sh 2>&1 && … … 356 354 --module-source $MODULE_SRC/vboxsf \ 357 355 --no-print-directory install 2>&1`; then 358 log "Error building the module:"359 356 module_build_log "$myerr" 360 357 info "Look at $LOG to find out what went wrong" … … 366 363 --module-source $MODULE_SRC/vboxvideo \ 367 364 --no-print-directory install 2>&1`; then 368 log "Error building the module:"369 365 module_build_log "$myerr" 370 366 info "Look at $LOG to find out what went wrong"
Note:
See TracChangeset
for help on using the changeset viewer.