VirtualBox

Changeset 25080 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Nov 28, 2009 11:36:45 PM (15 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
55434
Message:

Additions/linux/installer: 64 bit guest fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/linux/installer/vboxadd-x11.sh

    r24967 r25080  
    3737CONFIG_DIR="/var/lib/VBoxGuestAdditions"
    3838CONFIG="config"
     39
     40# Check architecture
     41cpu=`uname -m`;
     42case "$cpu" in
     43  i[3456789]86|x86)
     44    cpu="x86"
     45    LIB="/usr/lib"
     46    ;;
     47  x86_64|amd64)
     48    cpu="amd64"
     49    LIB="/usr/lib64"
     50    ;;
     51esac
    3952
    4053# Find the version of X installed
     
    261274    echo "VirtualBox Guest Additions installation, Window System and desktop setup" > $LOG
    262275    begin "Installing the Window System drivers"
    263     if [ "$ARCH" = "amd64" ]
    264     then
    265         LIB=/usr/lib64
    266     else
    267         LIB=/usr/lib
    268     fi
    269276    lib_dir="$LIB/VBoxGuestAdditions"
    270277    share_dir="/usr/share/VBoxGuestAdditions"
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette