#!/bin/sh

for FILE in ${ENCAP_SOURCE}/${ENCAP_PKGNAME}/bin/firebird; do
	if [ -f ${FILE} ]; then
		echo "  removing: ${FILE}";
		rm -f ${FILE};
	fi
done
