Changeset 75323 in vbox
- Timestamp:
- Nov 8, 2018 3:29:56 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 126443
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/installer/vboxadd.sh
r74964 r75323 270 270 rm -Rf /var/lib/VBoxGuestAdditions/lib 271 271 if /usr/bin/VBoxClient --check3d 2>/dev/null; then 272 setup_gl=true; 273 else 274 unset setup_gl 275 fi 276 # Disable 3D if Xwayland is found, except on Ubuntu 18.04. 277 if type Xwayland >/dev/null 2>&1; then 278 unset PRETTY_NAME 279 . /etc/os-release 2>/dev/null 280 case "${PRETTY_NAME}" in 281 "Ubuntu 18.04"*) ;; 282 *) unset setup_gl ;; 283 esac 284 fi 285 if test -n "${setup_gl}"; then 272 286 mkdir -p /var/lib/VBoxGuestAdditions/lib 273 287 ln -sf "${INSTALL_DIR}/lib/VBoxOGL.so" /var/lib/VBoxGuestAdditions/lib/libGL.so.1
Note:
See TracChangeset
for help on using the changeset viewer.