mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-11 21:27:10 +00:00
Imported using git-ubuntu import. Changelog parent: f065c9b603d5821413a53d1241efe361b193bcc8 New changelog entries: * touch: removing dependencies on a specific mir platform driver as mir can now identify and load the correct driver during runtime
8 lines
334 B
Bash
Executable File
8 lines
334 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "I: making libhybris the default alternatives for @DEB_HOST_MULTIARCH@_egl_conf"
|
|
update-alternatives --set @DEB_HOST_MULTIARCH@_egl_conf /usr/lib/@DEB_HOST_MULTIARCH@/libhybris-egl/ld.so.conf
|
|
|
|
# ldconfig needs to be run immediately as we're changing /etc/ld.so.conf.d/ with alternatives.
|
|
LDCONFIG_NOTRIGGER=y ldconfig
|