Changeset 38542 in vbox
- Timestamp:
- Aug 26, 2011 9:14:29 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 73694
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/installer/vboxadd.sh
r38093 r38542 197 197 } 198 198 199 fail()199 show_error() 200 200 { 201 201 if [ "$system" = "gentoo" ]; then 202 202 eerror $1 203 exit 1204 203 fi 205 204 fail_msg 206 205 echo "($1)" 206 } 207 208 fail() 209 { 210 show_error "$1" 207 211 exit 1 208 212 } … … 389 393 --save-module-symvers /tmp/vboxguest-Module.symvers \ 390 394 --no-print-directory install >> $LOG 2>&1; then 391 fail "Look at $LOG to find out what went wrong" 395 show_error "Look at $LOG to find out what went wrong" 396 return 1 392 397 fi 393 398 succ_msg … … 398 403 --use-module-symvers /tmp/vboxguest-Module.symvers \ 399 404 --no-print-directory install >> $LOG 2>&1; then 400 fail "Look at $LOG to find out what went wrong" 405 show_error "Look at $LOG to find out what went wrong" 406 return 1 401 407 fi 402 408 succ_msg … … 407 413 --use-module-symvers /tmp/vboxguest-Module.symvers \ 408 414 --no-print-directory install >> $LOG 2>&1; then 409 fail "Look at $LOG to find out what went wrong" 415 show_error "Look at $LOG to find out what went wrong" 416 return 1 410 417 fi 411 418 succ_msg
Note:
See TracChangeset
for help on using the changeset viewer.