mirror of
https://git.launchpad.net/livecd-rootfs
synced 2026-02-19 16:33:29 +00:00
Imported using git-ubuntu import.
Changelog parent: 662c167d12eeb3e43a0dd4b78ccd5de493583a53
New changelog entries:
* Substitute DEB_HOST_MULTIARCH into hook scripts at build time, rather
than relying on dpkg-architecture (which is in dpkg-dev) to be present
in the image.
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
|