mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-19 19:36:44 +02:00
8 lines
295 B
Bash
8 lines
295 B
Bash
#!/bin/sh -e
|
|
|
|
# Remove a potential /bin/execlineb symlink if the machine isn't usrmerged
|
|
if target=$(readlink /bin) && test $target = /usr/bin ; then : ; else
|
|
if target=$(readlink /bin/execlineb) && test $(realpath $target) = $(realpath /usr/bin/execlineb) ; then
|
|
rm -f /bin/execlineb
|
|
fi
|
|
fi
|