Changeset 24717 in vbox for trunk/src/VBox/Additions/linux/installer
- Timestamp:
- Nov 17, 2009 11:25:15 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/installer/vboxadd-x11.sh
r24651 r24717 261 261 echo "VirtualBox Guest Additions installation, Window System and desktop setup" > $LOG 262 262 begin "Installing the Window System drivers" 263 lib_dir="/usr/lib/VBoxGuestAdditions" 263 if [ "$ARCH" = "amd64" ] 264 then 265 LIB=/usr/lib64 266 else 267 LIB=/usr/lib 268 fi 269 lib_dir="$LIB/VBoxGuestAdditions" 264 270 share_dir="/usr/share/VBoxGuestAdditions" 265 271 test -x "$lib_dir" -a -x "$share_dir" || … … 310 316 vboxvideo_src=vboxvideo_drv_16.so 311 317 vboxmouse_src=vboxmouse_drv_16.so 318 # SUSE with X.Org Server 1.6 knows about vboxvideo 319 test "$system" = "suse" && setupxorgconf="" 312 320 ;; 313 321 1.4.99.* | 1.5.* ) … … 463 471 semanage fcontext -a -t unconfined_execmem_exec_t '/usr/bin/VBoxClient' > /dev/null 2>&1 464 472 # Install the guest OpenGL drivers 465 if [ "$ARCH" = "amd64" ]466 then467 LIB=/usr/lib64468 else469 LIB=/usr/lib470 fi471 473 if [ -d /usr/lib64/dri ] 472 474 then … … 501 503 if test -r "$nobak"; then 502 504 test -r "$main_cfg" && 503 if test "$main_cfg" -ot "$nobak" -o -n "$legacy"; then504 rm -f "$ main_cfg"505 if test -n "$legacy" -o ! "$nobak" -ot "$main_cfg"; then 506 rm -f "$nobak" "$main_cfg" 505 507 else 506 508 newer="$newer`printf " $main_cfg (no original)\n"`"
Note:
See TracChangeset
for help on using the changeset viewer.