#!/bin/sh -e

# Remove a potential /bin/execlineb symlink if the machine isn't usrmerged

if target="$(busybox readlink /bin)" && busybox test "$target" = "usr/bin" ; then : ; else
	if target="$(busybox readlink /bin/execlineb)" && busybox test "$(busybox realpath "$target")" = "$(busybox realpath /usr/bin/execlineb)"; then
		busybox rm -f /bin/execlineb
	fi
fi
