#!/bin/sh
# /usr/lib/emacsen-common/packages/remove/acldoc

set -e

FLAVOR=$1
elc=/usr/share/${FLAVOR}/site-lisp/acldoc.elc

echo remove/acldoc: Handling removal of emacsen flavor ${FLAVOR}

if [ ${FLAVOR} != emacs ]
then
   echo emacsen-common: purging byte-compiled files for ${FLAVOR}
   rm -f ${elc}
fi

exit 0;
