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