aports/main/execline/execline.post-upgrade
Laurent Bercot 0fa1e610b0 main/execline: replace usrmerge APKBUILD hack with post-install scripts
Signed-off-by: Laurent Bercot <ska@appnovation.com>
2024-10-10 11:19:43 +02:00

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