Changeset 50925 in vbox for trunk/src/VBox
- Timestamp:
- Mar 31, 2014 8:14:22 AM (11 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/installer/vboxadd.sh
r49162 r50925 44 44 i[3456789]86|x86) 45 45 cpu="x86" 46 lib_ path="/usr/lib"46 lib_candidates="/usr/lib/i386-linux-gnu /usr/lib /lib" 47 47 ;; 48 48 x86_64|amd64) 49 49 cpu="amd64" 50 if test -d "/usr/lib64"; then 51 lib_path="/usr/lib64" 52 else 53 lib_path="/usr/lib" 54 fi 50 lib_candidates="/usr/lib/x86_64-linux-gnu /usr/lib64 /usr/lib /lib64 /lib" 55 51 ;; 56 52 esac 53 for i in $lib_candidates; do 54 if test -d "$i/VBoxGuestAdditions"; then 55 lib_path=$i 56 break 57 fi 58 done 57 59 58 60 if [ -f /etc/arch-release ]; then -
trunk/src/VBox/Installer/linux/run-inst.sh
r50733 r50925 359 359 link_into_fs "sbin" "/usr/sbin" 360 360 link_into_fs "lib" "$lib_path" 361 add_symlink "$INSTALLATION_DIR/lib/$PACKAGE" /usr/lib/"$PACKAGE" 361 362 link_into_fs "share" "/usr/share" 362 363 link_into_fs "src" "/usr/src"
Note:
See TracChangeset
for help on using the changeset viewer.