mirror of
				https://git.launchpad.net/livecd-rootfs
				synced 2025-10-31 08:54:06 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			963 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			963 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
 | |
| 
 | |
| if dpkg -l libmirclient8driver-android 2>/dev/null|grep -q ^ii; then
 | |
|     echo "I: making android the default alternatives for @DEB_HOST_MULTIARCH@_mirclient8driver_conf"
 | |
|     update-alternatives --set @DEB_HOST_MULTIARCH@_mirclient8driver_conf /usr/lib/@DEB_HOST_MULTIARCH@/client8driver/android/ld.so.conf
 | |
| fi
 | |
| 
 | |
| 
 | |
| if dpkg -l libmirplatform3driver-android 2>/dev/null|grep -q ^ii; then
 | |
|     echo "I: making android the default alternatives for @DEB_HOST_MULTIARCH@_mirplatform3driver_conf"
 | |
|     update-alternatives --set @DEB_HOST_MULTIARCH@_mirplatform3driver_conf /usr/lib/@DEB_HOST_MULTIARCH@/platform3driver/android/ld.so.conf
 | |
| fi
 | |
| 
 | |
| # ldconfig needs to be run immediately as we're changing /etc/ld.so.conf.d/ with alternatives.
 | |
| LDCONFIG_NOTRIGGER=y ldconfig
 |