#!/bin/sh -e

# Add a /bin/execlineb symlink if the machine isn't usrmerged
if target="$(busybox readlink /bin)" && busybox test "$target" = "usr/bin" ; then : ; else
	busybox ln -nsf ../usr/bin/execlineb /bin/execlineb
fi
