#!/bin/sh
# /usr/lib/emacsen-common/packages/remove/bhl
set -e

FLAVOR=$1
echo remove/bhl: Handling removal of emacsen flavor ${FLAVOR}

if [ ${FLAVOR} != emacs ]
then
  rm -f /usr/share/${FLAVOR}/site-lisp/bhl.elc
fi
exit 0;
