#!/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
