Changeset 25139 in vbox for trunk/src/VBox/Additions/linux
- Timestamp:
- Dec 1, 2009 8:46:34 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/installer/vboxadd.sh
r25038 r25139 39 39 BUILDVBOXVIDEO=`/bin/ls /usr/src/vboxvideo*/build_in_tmp 2>/dev/null|cut -d' ' -f1` 40 40 LOG="/var/log/vboxadd-install.log" 41 42 # Check architecture 43 cpu=`uname -m`; 44 case "$cpu" in 45 i[3456789]86|x86) 46 cpu="x86" 47 lib_path="/usr/lib" 48 ;; 49 x86_64|amd64) 50 cpu="amd64" 51 if test -d "/usr/lib64"; then 52 lib_path="/usr/lib64" 53 else 54 lib_path="/usr/lib" 55 fi 56 ;; 57 esac 41 58 42 59 if [ -f /etc/arch-release ]; then … … 378 395 379 396 # Put mount.vboxsf in the right place 380 ln -sf /usr/lib/$PACKAGE/mount.vboxsf/sbin397 ln -sf "$lib_path/$PACKAGE/mount.vboxsf" /sbin 381 398 382 399 succ_msg
Note:
See TracChangeset
for help on using the changeset viewer.