7 lines
159 B
Text
7 lines
159 B
Text
|
#!/bin/sh
|
||
|
ARCH=$(uname -m)
|
||
|
|
||
|
if [ ! -f /etc/ld-musl-$ARCH.path ]; then
|
||
|
echo "/usr/lib/libhybris-egl:/lib:/usr/local/lib:/usr/lib" > /etc/ld-musl-$ARCH.path
|
||
|
fi
|