Changeset 61872 in vbox for trunk/src/VBox/Installer/solaris
- Timestamp:
- Jun 24, 2016 8:32:02 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/solaris/vboxconfig.sh
r61601 r61872 1255 1255 # Install the S10 legacy library links if necessary 1256 1256 if test -d /opt/VirtualBox/legacy/; then 1257 if ldd /opt/VirtualBox/amd64/VBoxRT-x86.so | grep "not found" > /dev/null; then1257 if test "$HOST_OS_MAJORVERSION" -eq 10; then 1258 1258 for lib in `ls -1 /opt/VirtualBox/legacy/`; do 1259 1259 ln -sf legacy/$lib /opt/VirtualBox/$lib 1260 1260 done 1261 1261 fi 1262 if ldd /opt/VirtualBox/amd64/VBoxRT.so | grep "not found" > /dev/null; then1262 if test "$HOST_OS_MAJORVERSION" -eq 10; then 1263 1263 for lib in `ls -1 /opt/VirtualBox/amd64/legacy/`; do 1264 1264 ln -sf legacy/$lib /opt/VirtualBox/amd64/$lib
Note:
See TracChangeset
for help on using the changeset viewer.