mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-20 00:16:38 +02:00
6 lines
194 B
Bash
6 lines
194 B
Bash
#!/bin/sh -e
|
|
|
|
# Add a /bin/execlineb symlink if the machine isn't usrmerged
|
|
if target=$(readlink /bin) && test $target = /usr/bin ; then : ; else
|
|
ln -nsf ../usr/bin/execlineb /bin/execlineb
|
|
fi
|