mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-10 20:57:29 +00:00
10 lines
397 B
Plaintext
10 lines
397 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
DEB_HOST_MULTIARCH=$(dpkg-architecture -qDEB_HOST_MULTIARCH)
|
||
|
|
||
|
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
|