6 lines
159 B
Bash
6 lines
159 B
Bash
#!/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
|